import { ReactElement } from 'react'; export type OptionsEditorGridProps = { /** * 1-3 `OptionsEditorColumn` components to render content in columns. */ children: React.ReactNode; }; /** * Top level grid container used to lay out content for editing in panel * options. */ export declare const OptionsEditorGrid: ({ children }: OptionsEditorGridProps) => ReactElement; //# sourceMappingURL=OptionsEditorGrid.d.ts.map