import * as React from 'react'; import { BoxProps } from '../Box'; export declare type LocalPageWithHeaderProps = { /** Indicates if the header is visible initially. */ defaultIsVisible?: boolean; /** Sets the header component. */ header: React.ReactElement; /** Sets the height of the header component. */ headerHeight?: string; /** Makes the header stick to the top of the page. */ sticky?: boolean; }; export declare type PageWithHeaderProps = BoxProps & LocalPageWithHeaderProps; export declare const PageWithHeader: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };