import { ParserToolbox } from '../../../parsersEngine/ParserToolbox.js'; import { TokenState } from '@specifyapp/specify-design-token-format'; type tailwindValue = string | Array; type tailwindModeValue = { [mode: string]: tailwindValue; }; type tailwindValues = tailwindValue | tailwindModeValue; type convertedTailwindToken = { value: tailwindValues; type: string; mode?: string; }; type parserOptions = { useCssVariable: boolean; cssVariableTemplate: { tokenNameTemplate: string; tokenNotInCollectionNameTemplate: string; }; removeModesIfSameValue: boolean; removeSingleMode: boolean; }; export declare function tokenToTailwind(token: TokenState, parserOptions: parserOptions, toolbox: ParserToolbox): Array | undefined; export declare function tokensToTailwindPreset(tokens: Array, parserOptions: parserOptions, toolbox: ParserToolbox): { theme: { extend: {}; }; }; export {}; //# sourceMappingURL=tokenToTailwind.d.ts.map