type FastQueryString = { stringify(value: Record): string; parse(value: string): Record; }; declare namespace fastQueryString { export function stringify(value: Record): string; export function parse(value: string): Record; const fqs: FastQueryString; export { fqs as default }; } export = fastQueryString;