import * as React from 'react'; interface HeaderProps { withCloseButton?: boolean; onCloseClick?: () => void; } export declare function Header(props: React.PropsWithChildren): React.JSX.Element; export {};