import type { LayoutChildren } from './LayoutChildren'; import type { LayoutFragment } from './LayoutFragment'; import type { IntrinsicSizes, LayoutConstraints, LayoutTaskType } from './types'; import type { Deferred } from './utils'; export type LayoutWorkTask = { layoutConstraints: LayoutConstraints; layoutChild: LayoutChildren; taskType: LayoutTaskType.Layout; deferred: Deferred; } | { layoutChild: LayoutChildren; taskType: LayoutTaskType.IntrinsicSizes; deferred: Deferred; }; //# sourceMappingURL=LayoutWorkTask.d.ts.map