export declare const theme: { colors: { primary: string; secondary: string; success: string; warning: string; error: string; info: string; white: string; black: string; gray: { 50: string; 100: string; 200: string; 300: string; 400: string; 500: string; 600: string; 700: string; 800: string; 900: string; }; background: string; surface: string; text: string; textSecondary: string; border: string; }; spacing: { xs: number; sm: number; md: number; lg: number; xl: number; xxl: number; }; borderRadius: { small: number; medium: number; large: number; xl: number; full: number; }; typography: { h1: { fontSize: number; fontWeight: "bold"; lineHeight: number; }; h2: { fontSize: number; fontWeight: "bold"; lineHeight: number; }; h3: { fontSize: number; fontWeight: "600"; lineHeight: number; }; body: { fontSize: number; fontWeight: "normal"; lineHeight: number; }; caption: { fontSize: number; fontWeight: "normal"; lineHeight: number; }; }; shadows: { small: { shadowColor: string; shadowOffset: { width: number; height: number; }; shadowOpacity: number; shadowRadius: number; elevation: number; }; medium: { shadowColor: string; shadowOffset: { width: number; height: number; }; shadowOpacity: number; shadowRadius: number; elevation: number; }; large: { shadowColor: string; shadowOffset: { width: number; height: number; }; shadowOpacity: number; shadowRadius: number; elevation: number; }; }; }; export default theme;