/// import { HeadingProps } from '@teambit/base-ui.text.heading'; import { PossibleSizes } from '@teambit/base-ui.theme.sizes'; export declare type HeaderProps = { /** font-size for the header */ size?: PossibleSizes; } & HeadingProps; export declare function H1(props: HeaderProps): JSX.Element; export declare function H2(props: HeaderProps): JSX.Element; export declare function H3(props: HeaderProps): JSX.Element; export declare function H4(props: HeaderProps): JSX.Element; export declare function H5(props: HeaderProps): JSX.Element; export declare function H6(props: HeaderProps): JSX.Element;