import type { Theme, ThemeCssVarsWide } from "../../../../interfaces/general/index.ts"; export type DeclarationType = 'default' | 'onlyRoot' | 'modern' | 'onlyColors'; /** * Компилирует медиаквери переходы между переменными * @param sourceTheme * @param type */ // eslint-disable-next-line sonarjs/cognitive-complexity export declare function compileBreakpointsCssVarsDeclaration(sourceTheme: ThemeCssVarsWide>, type?: DeclarationType): string | null;