import * as React from 'react'; import {PropsWithChildren} from "react"; export interface HeaderLayoutProps { title?: React.ReactNode; onCancel?: React.MouseEventHandler; closeButton?: boolean; theme?: HeaderLayoutTheme; } export type HeaderLayoutTheme = 'red' | 'blue' | 'purple'; declare const HeaderLayout: React.FC>; export default HeaderLayout;