type Value = undefined | string; export type Query = Record; declare function parse(search: string): Query; type CanBeEncoded = Parameters[0] | undefined; type StringifiableValue = CanBeEncoded | CanBeEncoded[]; type ParsedUrlQuery = Record; declare function stringify(query: ParsedUrlQuery): string; export declare const qs: { parse: typeof parse; stringify: typeof stringify; }; export {};