/// import { IFabreactorButton } from '../../utils'; interface IFabreactorHeaderProps { color?: string; image?: string; title: string; primaryDescription?: string; secondaryDescription?: string; onDismiss?: () => void; buttons?: IFabreactorButton[] | null; preview?: boolean; fullWidthToggle?: boolean; isFullWidth?: boolean; onToggleSize?: () => void; } export declare const FabreactorHeader: (props: IFabreactorHeaderProps) => JSX.Element; export {};