import * as tm from "type-mapping"; import { RouteData, Route } from "../route"; export declare type SetQuery = (Route<{ readonly method: DataT["method"]; readonly path: DataT["path"]; readonly param: DataT["param"]; readonly query: F; readonly body: DataT["body"]; readonly header: DataT["header"]; readonly response: DataT["response"]; }>); /** Your query mapper should handle the following types, `string|(string[])|undefined` */ export declare function setQuery(data: DataT, f: F): SetQuery; //# sourceMappingURL=set-query.d.ts.map