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