export interface ColorTokens { primary: string; secondary: string; background: string; surface: string; text: { primary: string; secondary: string; onPrimary: string; }; gradients: { sunset: [string, string, string, string]; card: [string, string, string]; button: [string, string]; glass: [string, string]; }; } export interface QwikTheme { colors: ColorTokens; spacing: { xs: number; s: number; m: number; l: number; xl: number; }; borderRadius: { s: number; m: number; l: number; xl: number; }; } export declare const qwikTheme: QwikTheme; //# sourceMappingURL=tokens.d.ts.map