import { CSSToken } from '@csstools/css-tokenizer'; export declare class LayerName { parts: Array; constructor(parts: Array); tokens(): Array; slice(start: number, end: number): LayerName; concat(other: LayerName): LayerName; segments(): Array; name(): string; equal(other: LayerName): boolean; toString(): string; toJSON(): { parts: CSSToken[]; segments: string[]; name: string; }; }