import type { Token, Descriptors } from '@tokey/core'; type Delimiters = '(' | ')' | ',' | '/' | '+' | '-' | '*' | '#' | '.' | '%'; export type CSSValueToken = Token; export declare function tokenizeValue(source: string, options?: { offset?: number; }): CSSValueToken[]; export {}; //# sourceMappingURL=tokenizer.d.ts.map