import ValueCollection from "../classes/ValueCollection"; export declare function trimString(str: string): string; /** * Efficiently parse Key-Value Strings into ValueCollections * @since 7.0.0 */ export default function parseKV(type: Type, keyValue: string, equal?: string, splitter?: string, decode?: typeof decodeURIComponent): Type extends 'ValueCollection' ? ValueCollection : Record;