import { ReactElement } from 'react'; export type OptionsEditorColumnProps = { /** * Components to render in the column. These will usually be * `OptionsEditorGroup` components. */ children: React.ReactNode; }; /** * Lay out content in a column within panel options. */ export declare const OptionsEditorColumn: ({ children }: OptionsEditorColumnProps) => ReactElement; //# sourceMappingURL=OptionsEditorColumn.d.ts.map