import * as react_jsx_runtime from 'react/jsx-runtime';
import * as React from 'react';

type HeaderProps = React.RefAttributes<HTMLHtmlElement> & {
    children?: React.ReactNode;
};
declare function Header({ children, ...props }: HeaderProps): react_jsx_runtime.JSX.Element;

export { Header, type HeaderProps };
