export interface Scales { xxxxs: string; xxxs: string; xxs: string; xs: string; sm: string; md: string; lg: string; xl: string; xxl: string; xxxl: string; xxxxl: string; } export declare class Scale implements Scales { readonly base: number; readonly unit: string; readonly scale: number; readonly xxxxs: string; readonly xxxs: string; readonly xxs: string; readonly xs: string; readonly sm: string; readonly md: string; readonly lg: string; readonly xl: string; readonly xxl: string; readonly xxxl: string; readonly xxxxl: string; readonly full: string; constructor(params: { base: number; unit: string; scale: number; }); private calculateSize; size(n: number): string; } //# sourceMappingURL=scale.d.ts.map