export declare const mqs: { xs: string; s: string; m: string; l: string; xl: string; xxl: string; }; export declare const font: { family: string; }; declare const theme: Theme; export default theme; export declare type Theme = { mqs: { xs: string; s: string; m: string; l: string; xl: string; xxl: string; }; colors: { primary: string; secondary: string; }; font: { family: string; }; };