/** * Public component exports for `@medusajs/dashboard/components`. */ import { Layouts, CUSTOMIZE_IDS, LayoutComposer as LayoutComposerImpl, LayoutComposerProps as LayoutComposerPropsImpl, LayoutEntry, } from "../components/layout-composer" type LayoutComposerProps = Omit< LayoutComposerPropsImpl, "customizeId" | "controlSize" > const LayoutComposerRoot = ({ widgetsZonePrefix, preferredLayoutId, sections, data, hasOutlet = true, disableWidgets = false, }: LayoutComposerProps) => { return ( ) } export const LayoutComposer = Object.assign(LayoutComposerRoot, { Entry: LayoutEntry, }) export type { LayoutComponentProps } from "../components/layout-composer/types" export { ConfigurableDataTable, type ConfigurableDataTableProps, } from "../components/table/configurable-data-table/configurable-data-table"