import React from 'react'; import { IOnClose } from '../../../types'; export interface IHeaderProps { /** default Header component property- title */ title?: React.ReactNode; /** default Header component property - headerCustomizeArea. flexible area that will take the rest place, inner mechanism flex-grow:1 */ headerCustomizeArea?: React.ReactNode; /** default Header component property - headerRightSecondIconSection. This part is a 32*32 container next to close icon */ headerRightSecondIconSection?: React.ReactNode; /** default Header component property - isCloseIconShow. Whether to show close icon */ isCloseIconShow?: boolean; /** close event, trigger when closing the modal */ onClose: IOnClose; } declare const Header: React.FC; export default Header;