import { default as React } from 'react'; import { StyleProps, PolymorphicProps } from '../../style-engine'; declare const headerStyles: import('../../style-engine').StylesDef<{ sticky: { true: string; false: string; }; }>; export type HeaderProps = PolymorphicProps & { sticky?: boolean; }>; export declare function Header({ as, sticky, className, ...props }: HeaderProps): React.JSX.Element; export {};