import { ComponentType, ReactNode } from 'react'; import { LayoutSection } from '@medusajs/admin-shared'; type LayoutComponentProps = { sections: Record; data?: unknown; className?: string; }; type LayoutControlSize = "default" | "small" | "xsmall"; type LayoutDefinition = { id: string; sections: LayoutSection[]; Component: ComponentType; }; export type { LayoutDefinition as L, LayoutControlSize as a, LayoutComponentProps as b };