import { z } from "zod";
declare const EnvSchema: z.ZodObject<{
    API_URL: z.ZodDefault<z.ZodString>;
    TIMEOUT: z.ZodDefault<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
    API_URL: string;
    TIMEOUT: number;
}, {
    API_URL?: string | undefined;
    TIMEOUT?: number | undefined;
}>;
export type UmayConfig = z.infer<typeof EnvSchema>;
export declare function loadConfig(env?: Record<string, string | undefined>): UmayConfig;
export {};
