import * as React from 'react';
export interface IProps {
    children: any;
}
export default class Title extends React.PureComponent<IProps> {
    static H1: import("styled-components").StyledComponent<"h1", any, import("./HeadingsModule").IProps, never>;
    static H2: import("styled-components").StyledComponent<"h2", any, import("./HeadingsModule").IProps, never>;
    static H3: import("styled-components").StyledComponent<"h3", any, import("./HeadingsModule").IProps, never>;
    static H5: import("styled-components").StyledComponent<"h5", any, import("./HeadingsModule").IProps, never>;
    render: () => any;
}
