export interface FontTypes { children?: any; fontFamily: string; weight?: string; lineHeight: string; textAlign?: string; center?: boolean; size: string; colour: string; [k: string]: any; } export declare const Header1: import("styled-components").StyledComponent<"h1", any, FontTypes, never>; export declare const Header2: import("styled-components").StyledComponent<"h2", any, FontTypes, never>; export declare const Header3: import("styled-components").StyledComponent<"h3", any, FontTypes, never>; export declare const Header4: import("styled-components").StyledComponent<"h4", any, FontTypes, never>; export declare const Header5: import("styled-components").StyledComponent<"h5", any, FontTypes, never>; export declare const Paragraph: import("styled-components").StyledComponent<"p", any, FontTypes, never>; export declare const Bold: import("styled-components").StyledComponent<"b", any, FontTypes, never>; export declare const Span: import("styled-components").StyledComponent<"span", any, FontTypes, never>; export declare const Small: import("styled-components").StyledComponent<"small", any, FontTypes, never>; export declare const Sub: import("styled-components").StyledComponent<"sub", any, FontTypes, never>; export declare const Italics: import("styled-components").StyledComponent<"i", any, FontTypes, never>; export declare const Anchor: import("styled-components").StyledComponent<"a", any, FontTypes & { href: string; }, never>; export declare const ListItem: import("styled-components").StyledComponent<"li", any, FontTypes, never>;