export declare const THEME: { palette: { colorLight: { bg: string; bgContrast: string; bgSecondary: string; bgSecondaryContrast: string; }; grey: { grey: string; grey100: string; grey200: string; grey300: string; grey500: string; grey600: string; grey700: string; }; bg: string; bgContrast: string; bgSecondary: string; bgSecondaryContrast: string; primary: string; primaryContrast: string; secondary: string; secondaryContrast: string; dark: string; light: string; danger: string; dangerContrast: string; info: string; infoContrast: string; success: string; successContrast: string; warning: string; warningContrast: string; }; breakpoints: { mobileS: string; mobileM: string; mobileL: string; tablet: string; laptop: string; laptopL: string; desktop: string; desktopL: string; }; typography: { fontSize: { xs: string; s: string; m: string; l: string; xl: string; xxl: string; }; fontWeight: { xs: number; s: number; m: number; l: number; xl: number; xxl: number; bold: string; }; }; spacing: { xs: string; s: string; m: string; l: string; xl: string; xxl: string; }; zIndex: { mobileStepper: number; fab: number; speedDial: number; appBar: number; drawer: number; modal: number; snackbar: number; tooltip: number; }; components: {}; custom: {}; }; declare type Theme = typeof THEME; declare module 'styled-components' { interface DefaultTheme extends Theme { } } export declare const createTheme: (theme: Partial) => object; export {};