import type { CSSProperties, ReactNode } from 'react'; export interface GroupPaneStyle { header?: CSSProperties; container?: CSSProperties; } interface GroupPaneProps { text: string; style?: GroupPaneStyle; children: ReactNode; renderHeader?: (text: string) => ReactNode; } export declare function GroupPane(props: GroupPaneProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=GroupPane.d.ts.map