import React, { type ReactNode } from 'react'; export type FlyoutPaneProps = { children: ReactNode | ReactNode[]; collapsible?: boolean; collapsed?: boolean; headerText?: string; height: number; onClose: () => void; onResize: (height: number) => void; onToggleExpansion?: () => void; }; export declare const FlyoutPane: React.ForwardRefExoticComponent>; //# sourceMappingURL=FlyoutPane.d.ts.map