import type { ConfigOptions } from '../lib/get-colors-base.js'; type ColorFormat = ConfigOptions['format']; interface SaveTokensOptions { colorBrand: string; colorAccent: string; colorFormat?: ColorFormat; tokens: any; tokensIsFlat?: boolean; tokensCSSPrefix?: string; tokensJSVariableName?: string; fileSingleOutputName?: string; fileOutputDir: string; fileFormat: 'json' | 'json-snapshot' | 'json-base-snapshot' | 'css' | 'less' | 'scss' | 'less-fallback' | 'scss-fallback' | 'js' | 'js-css-vars' | 'js-css-vars-fallback'; removePressedAndHover?: boolean; } export declare function saveTokens({ tokens, colorBrand, colorAccent, tokensIsFlat, tokensCSSPrefix, tokensJSVariableName, fileSingleOutputName, fileOutputDir, fileFormat, removePressedAndHover, }: SaveTokensOptions): void; export {};