export declare const SCSS_EXPRESSION_PREFIX = "SCSS_EXPRESSION_START_"; export declare const SCSS_EXPRESSION_SUFFIX = "_SCSS_EXPRESSION_END"; export declare const SCSS_REMOVE_ME_DECLARATION = "_SCSS_REMOVE_ME_"; /** * The prefix to add before any declaration property value when working with scss files * @type {string} */ export declare const scssDeclarationValueExpressionPrefix: string; /** * The suffix to add after any declaration property value when working with scss files * @type {string} */ export declare const scssDeclarationValueExpressionSuffix: string; /** * A Plugin that can transform a .scss file with Fovea expressions into a representation that node-sass can work with * @type {postcss.Plugin<{}>} */ export declare const postCSSFoveaScssPreparePlugin: any;