export interface TypographyProps {
    color?: string;
    fontFamily?: string;
    fontSize?: string;
    fontStyle?: string;
    fontWeight?: string;
    lineHeight?: string;
    letterSpacing?: string;
    marginBottom?: string;
    marginTop?: string;
    textAlign?: string;
}
export declare const Typography: import("styled-components").StyledComponent<"span", any, TypographyProps, never>;
