import { ICssPrinter } from '../types/ICssPrinter'; import { IStyleManager } from '../types/IStyleManager'; export interface _IStyleConfig { readonly _cssPrinter: ICssPrinter; readonly _styleManager: IStyleManager | undefined; readonly _hashFunction: (tokens: readonly string[]) => string; } export declare function _getConfig(): Readonly<_IStyleConfig>; export declare namespace _getConfig { var _locked: boolean; }