export type FloatingPanelHeaderAction = { label: React.ReactNode; onClick: () => void; disabled?: boolean; testId?: string; }; export type FloatingPanelHeaderProps = { title: React.ReactNode; onClose: () => void; closeLabel?: string; closeTestId?: string; onBack?: () => void; backLabel?: string; action?: FloatingPanelHeaderAction; /** A `TabNavigation` rendered on a second row under the title. */ tabs?: React.ReactNode; /** Extra trailing controls, placed before the action link and the close button. */ children?: React.ReactNode; className?: string; } & React.RefAttributes; export declare function FloatingPanelHeader({ title, onClose, closeLabel, closeTestId, onBack, backLabel, action, tabs, children, className, ref, }: FloatingPanelHeaderProps): import("react").JSX.Element; export declare namespace FloatingPanelHeader { var displayName: string; } //# sourceMappingURL=FloatingPanelHeader.d.ts.map