export type CoercionMode = 'default' | 'raw-strings' | 'none';
export interface ParsedKeyValueToken {
    key: string;
    rawValue: string;
    consumed: number;
}
export declare function parseKeyValueToken(token: string, nextToken: string | undefined): ParsedKeyValueToken | undefined;
export declare function coerceValue(value: string, coercionMode?: CoercionMode): unknown;
export declare function shouldPromoteSelectorToCommand(selector: string): boolean;
//# sourceMappingURL=call-argument-values.d.ts.map