import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react'; import type { HeadingLevel, HeadingPreset } from '../../components/heading/pharos-heading'; export interface PharosHeadingProps extends DetailedHTMLProps, HTMLElement> { /** * Indicates the heading tag level. */ level: HeadingLevel; /** * Indicates the visual styling preset to use. */ preset: HeadingPreset; /** * Indicates if the heading should not have a margin applied. */ noMargin?: boolean; } export declare const PharosHeading: FC; //# sourceMappingURL=pharos-heading.d.ts.map