import { ThemeType, TokenValue, TokenKeyName } from './types'; export declare const getTokenValue: (token: TokenKeyName, tokenName: string) => string; export declare const getDocumentCSSTokens: () => { colors: { [x: string]: TokenValue | undefined; }; shadows: { [x: string]: TokenValue | undefined; }; }; /** * Returns active theme according to the given document */ export declare const getDocumentTheme: (el: HTMLElement) => string; export declare const getThemeName: (theme: ThemeType | string) => string; export declare const changeTheme: (theme: ThemeType | string) => void;