export declare enum FtTypographyVariants {
    title = "title",
    title_dense = "title-dense",
    subtitle1 = "subtitle1",
    subtitle2 = "subtitle2",
    body1 = "body1",
    body2 = "body2",
    caption = "caption",
    breadcrumb = "breadcrumb",
    overline = "overline",
    button = "button"
}
export interface FtTypographyProperties {
    element?: string;
    variant: FtTypographyVariants;
}
