export interface Font { fontFamily: string; fontFamilyMono: string; fontStyle: string; } export interface BreakPoints { xs: string; sm: string; md: string; lg: string; xl: string; xl2: string; } export declare const defaultBreakpoints: BreakPoints; export interface Theme { fontFamily: string; fontFamilyMono: string; fontStyle: string; accent: { def: string; muted: string; emphasis: string; disabled: string; subtle: string; }; foreground: { def: string; muted: string; subtle: string; disabled: string; onDark: string; onAccent: string; onDisabled: string; }; background: { surface: string; canvas: string; subtle: string; }; error: { def: string; subtle: string; muted: string; emphasis: string; }; success: { emphasis: string; }; border: { def: string; }; text: { def: string; disabled: string; }; input: { background: string; disabled: string; placeholder: string; text: string; }; } export declare const defaultFont: Font; export declare const defaultLightTheme: Theme; export declare const defaultDarkTheme: Theme; //# sourceMappingURL=consts.d.ts.map