/** * Parses a Location's query string into an object of key/value pairs. * @name parseQueries>(location: Location): Queries * @example * import { createEnv, pushUrl, parseQueries } from '@typed/history' * * const { history, location } = createEnv() * * console.log(parseQueries(location)) // logs => {} * * pushUrl('/?q=hello&lang=en', history) * * console.log(parseQueries(location)) // logs => { q: 'hello', lang: 'en' } */ export declare function parseQueries = Record>(location: Location): Readonly; //# sourceMappingURL=parseQueries.d.ts.map