/** * 환경변수를 읽습니다. * - 브라우저/Vite: `import.meta.env` * - Node.js: `process.env` */ export declare function readEnv(name: string): string | undefined; /** 쿼리 파라미터 객체를 URL 쿼리 문자열로 변환합니다. `orderBy` 키는 `order_by`로 변환됩니다. */ export declare function buildQuery(params: Record): string;