import { CSSToken } from '@csstools/css-tokenizer'; interface TokenConvertible { tokens(): Array; } /** * Returns the start and end index of a node in the CSS source string. */ export declare function sourceIndices(x: TokenConvertible | Array): [number, number]; export {};