export declare type StringMap = Map<string, string>;
export declare type StringStringMap = Map<string, StringMap>;
/**
 * Extract variables from theme selectors and return map with selectors and values.
 */
export declare function extractThemeVariables(css: string): Promise<StringStringMap>;
