import React, { ReactElement } from 'react'; export type OptionsEditorGroupProps = { /** * Text that communicates the purpose of the grouping. */ title: string; children: React.ReactNode; icon?: React.ReactNode; }; /** * Group similar content within panel options. */ export declare const OptionsEditorGroup: ({ title, children, icon }: OptionsEditorGroupProps) => ReactElement; //# sourceMappingURL=OptionsEditorGroup.d.ts.map