declare const Brand: unique symbol; export type Branded = T & { [Brand]: Brand; }; export interface ParseOptions { replacer?(init: ParseReplacerInit): unknown; } interface ParseReplacerInit { firstRawValue: string[]; key: string; rawValue: string[]; value: string | string[]; } export interface StringifyOptions { replacer?(init: StringifyReplacerInit): string | null | undefined; } interface StringifyReplacerInit { flattenedKey: string; key: string; rawValue: T; value: string; } export type WithStringify = T & { toJSON?(): string; toString?(): string; }; export {}; //# sourceMappingURL=types.d.ts.map