import { CustomStyleProps } from '..'; interface HeadingTheme { color?: string; fontFamily?: string; fontWeight?: string; margin?: string; } export type StyleProps = { customStyle?: HeadingTheme; }; declare const StyledHeadingTitle: import("styled-components").StyledComponent<"h1", any, CustomStyleProps, never>; declare const StyledHeadingTitleLabel: import("styled-components").StyledComponent<"sup", any, {}, never>; declare const StyledSectionHeading: import("styled-components").StyledComponent<"h2", any, CustomStyleProps, never>; declare const StyledFeatureHeading: import("styled-components").StyledComponent<"h2", any, CustomStyleProps, never>; declare const StyledH1: import("styled-components").StyledComponent<"h1", any, StyleProps, never>; declare const StyledH2: import("styled-components").StyledComponent<"h2", any, StyleProps, never>; declare const StyledH3: import("styled-components").StyledComponent<"h3", any, StyleProps, never>; declare const StyledH4: import("styled-components").StyledComponent<"h4", any, StyleProps, never>; declare const StyledH5: import("styled-components").StyledComponent<"h5", any, StyleProps, never>; declare const StyledH6: import("styled-components").StyledComponent<"h6", any, StyleProps, never>; export { StyledHeadingTitle, StyledHeadingTitleLabel, StyledSectionHeading, StyledFeatureHeading, StyledH1, StyledH2, StyledH3, StyledH4, StyledH5, StyledH6 };