declare const theme: { colors: { white: string; grays: { 100: string; 200: string; 300: string; 400: string; 500: string; 600: string; 700: string; 800: string; 900: string; }; blues: { 300: string; 500: string; 600: string; 700: string; }; reds: { 200: string; 300: string; 500: string; }; green: string; purple: string; yellow: string; orange: string; }; fontSizes: number[]; fontWeights: { thin: number; light: number; normal: number; medium: number; semibold: number; bold: number; extrabold: number; black: number; }; space: number[]; sizes: number[]; speeds: (string | number)[]; breakpoints: string[]; radii: { small: number; medium: number; large: number; round: string; }; shadows: { 0: string; 1: string; 2: string; active: string; underline: string; fadeunder: string; }; }; export default theme;