5 lines
279 B
TypeScript
5 lines
279 B
TypeScript
|
import { CSSToken, ParseError } from '@csstools/css-tokenizer';
|
||
|
export declare function parseComponentValue(tokens: Array<CSSToken>, options?: {
|
||
|
onParseError?: (error: ParseError) => void;
|
||
|
}): import("../consume/consume-component-block-function").ComponentValue | undefined;
|