import { BoxProps } from 'grommet'; import { IHeaderProps } from './HeaderProps'; /** * A page header component * ```$ npm install grommet-controls * import { Header } from 'grommet-controls'; *
* ... *
* ``` */ declare const Header: { ({ children, ...rest }: IHeaderProps & BoxProps): JSX.Element; defaultProps: { position: string; zIndex: number; direction: string; background: string; fill: string; justify: string; align: string; elevation: string; pad: string; }; }; export { Header };