/**
 * Allows to use URLs like /some/:abc/other and pass { abc: "xyz" } as one of
 * body parameters. Such body parameters will be excluded from the body before
 * sending the request (so they're "moved" into the URL).
 */
export default function substituteParams<TBody>(url: string, body: TBody): [string, TBody];
//# sourceMappingURL=substituteParams.d.ts.map