import { SxProps } from '@mui/material'; interface HeaderProps { sx?: SxProps; children: React.ReactNode; } declare function Header(props: HeaderProps): import("react/jsx-runtime").JSX.Element; interface HeaderTextProps { primary?: React.ReactNode; secondary?: React.ReactNode; } declare function HeaderText(props: HeaderTextProps): import("react/jsx-runtime").JSX.Element; interface HeaderActionProps { children: React.ReactNode; } declare function HeaderAction(props: HeaderActionProps): import("react/jsx-runtime").JSX.Element; export { Header, HeaderAction, HeaderText }; //# sourceMappingURL=Header.d.ts.map