import { QueryParamConfigMap, DecodedValueMap } from 'serialize-query-params'; import { SetQuery } from './types'; export interface QueryRenderProps { query: DecodedValueMap; setQuery: SetQuery; } export interface QueryParamsProps { config: QPCMap; children: (renderProps: QueryRenderProps) => JSX.Element; } export declare const QueryParams: ({ config, children, }: QueryParamsProps) => JSX.Element; export default QueryParams;