interface ThemeReport { colorToken: string | null; colorTokens: string[]; backgroundToken: string | null; backgroundTokens: string[]; offTheme: boolean; tokenCount: number; themeScope: string | null; } export declare function themeReport(cs: CSSStyleDeclaration): ThemeReport; export {};