/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface HeaderProps extends StyleProps, IdProps, React.PropsWithChildren<any> {
}
export declare const Header: ({ id, style, className, children }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
