/** * The class name contract for the typography component */ export interface TypographyClassNameContract { /** * The root of the typography component */ typography?: string; /** * The type ramp 1 modifier */ typography__1?: string; /** * The type ramp 2 modifier */ typography__2?: string; /** * The type ramp 3 modifier */ typography__3?: string; /** * The type ramp 4 modifier */ typography__4?: string; /** * The type ramp 5 modifier */ typography__5?: string; /** * The type ramp 6 modifier */ typography__6?: string; /** * The type ramp 7 modifier */ typography__7?: string; /** * The type ramp 8 modifier */ typography__8?: string; /** * The type ramp 9 modifier */ typography__9?: string; }