/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ import type { CSSValueASTNode } from '../../../types/value-parser'; import { CSSVariableReferenceValue } from './CSSVariableReferenceValue'; type CSSUnparsedSegment = string | CSSVariableReferenceValue; export declare class CSSUnparsedValue { static _resolveVariableName(input: CSSValueASTNode[]): string | null; static _resolveUnparsedValue( input: CSSValueASTNode[], depth: number ): CSSUnparsedValue; static parse(_property: string, input: string): CSSUnparsedValue; _tokens: CSSUnparsedSegment[]; constructor(members: CSSUnparsedSegment[]); get(index: number): CSSUnparsedSegment; get size(): number; values(): IterableIterator; toString(): string; }