import { Guid } from "../Guid";
export interface TypographyDefinition {
    id: Guid;
    h1: TypographyType;
    h2: TypographyType;
    h3: TypographyType;
    text: TypographyType;
    caption: TypographyType;
    link: TypographyType;
}
export interface TypographyType {
    decoration?: string;
    large: TypographyTypeBreakPoint;
    medium?: TypographyTypeBreakPoint;
    small?: TypographyTypeBreakPoint;
}
export interface TypographyTypeBreakPoint {
    weight: number;
    size: number;
    lineHeight: number;
}
export declare const TypographyTypes: {
    h1: string;
    h2: string;
    h3: string;
    text: string;
    caption: string;
    link: string;
};
