import type { Extractor } from "./index.js"; /** * Extractor that extracts the raw query without processing it. * * @example * ```ts * import { rawQuery } from "@taxum/core/extract"; * import { m, Router } from "@taxum/core/routing"; * * const handler = handler([rawQuery], (query) => { * // ... * }); * * const router = new Router() * .route("/users", m.get(handler)); * ``` */ export declare const rawQuery: Extractor;