import { type Context } from "hono"; /** * HTTP 요청에서 파라미터를 파싱하고 검증 * @param c - Hono Context 객체 * @param options - 파싱 옵션 * @param options.selects - 반환할 필드명 배열 * @param options.requires - 필수 필드명 배열 * @returns 파싱된 파라미터 객체 * @throws {StatusError} 필수 필드 누락 또는 파싱 실패 시 */ export declare function parseParams(c: Context, options?: { selects?: string[]; requires?: string[]; }): Promise>; //# sourceMappingURL=contextParser.d.ts.map