import React, { FC } from 'react'; import { IAction } from '../../types'; interface IElementHeader { title?: string; actionLabel?: string; handleClose?: () => void; handleClick?: () => void; handleBack?: () => void; children?: React.ReactNode; backgroundColor?: string; iconColor?: string; iconHoverColor?: string; options?: IAction[]; theme?: any; bottomDivader?: boolean; actionDisabled?: boolean; } export declare const ElementHeader: FC; export {};