/// <reference types="react" />
export declare const TypographyVariants: {
    h1: string;
    h2: string;
    h3: string;
    h4: string;
    h5: string;
    h6: string;
    body1: string;
    body2: string;
};
export declare const TypographyColors: {
    error: string;
    primary: string;
    secondary: string;
    base: string;
    description: string;
    inherit: string;
};
export interface TypographyProps {
    variant: keyof typeof TypographyVariants;
    color?: keyof typeof TypographyColors;
    textAlign?: string;
    children: React.ReactNode;
    bold?: boolean;
}
