import { z } from 'zod'; export declare const WORKER_BASE_URL = "https://pera1.kazu-san.workers.dev/"; export declare const GithubUrlSchema: z.ZodObject<{ url: z.ZodString; dir: z.ZodOptional; ext: z.ZodOptional; mode: z.ZodOptional>; branch: z.ZodOptional; file: z.ZodOptional; }, "strip", z.ZodTypeAny, { url: string; dir?: string | undefined; ext?: string | undefined; mode?: "tree" | undefined; branch?: string | undefined; file?: string | undefined; }, { url: string; dir?: string | undefined; ext?: string | undefined; mode?: "tree" | undefined; branch?: string | undefined; file?: string | undefined; }>; export type GithubWorkerRequest = z.infer; export declare const buildWorkerUrl: (params: GithubWorkerRequest) => string;