import type { FC, ReactNode } from 'react'; export type SettingsPanelHeaderProps = { /** Header title. Defaults to "Settings". */ title?: ReactNode; /** Optional actions rendered before the close button. */ actions?: ReactNode; /** Optional close action for collapsible settings shells. */ onClose?: () => void; /** Accessible label for the close button. */ closeLabel?: string; /** Additional classes for the header container. */ className?: string; }; /** Compact settings panel header with the shared settings icon and close affordance. */ export declare const SettingsPanelHeader: FC; //# sourceMappingURL=settings-panel-header.d.ts.map