import { TypographyAlign, TypographyVariant } from './types';
export interface TypographyStyledProps {
    $variant: TypographyVariant;
    $align: TypographyAlign;
    $fullWidth: boolean;
}
export declare const getTypographyStyles: ($variant: TypographyVariant) => import("styled-components").RuleSet<object>;
export declare const TypographyStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, TypographyStyledProps>>;
