import { ReactNode } from 'react'; export type HeaderProps = { appearance: 'H1' | 'H2' | 'H3' | 'appName'; /** * Content */ children?: ReactNode; className?: string; testId?: string; }; export declare const Header: ({ children, appearance, testId, className }: HeaderProps) => JSX.Element; //# sourceMappingURL=Header.d.ts.map