import 'css.escape'; import { PixelifyTheme } from '../../../interfaces/general'; import { Formats } from './helpers/tokenProcessors'; export declare const serviceKeys: string[]; export declare type CompileStylesMode = 'default' | 'onlyVariables' | 'onlyColors' | 'withAdaptiveGroups' | 'onlyAdaptiveGroups' | 'noSizes'; /** * Компиллирует строку со стилями (в разных форматах), на основе темы */ export declare const compileStyles: >(format: Formats, theme: PT, mode?: CompileStylesMode) => string;