import z from "zod";
export declare const authConfigSchema: z.ZodObject<{
    api_key: z.ZodString;
    auth_token: z.ZodString;
}, "strip", z.ZodTypeAny, {
    api_key: string;
    auth_token: string;
}, {
    api_key: string;
    auth_token: string;
}>;
export type AuthConfig = z.infer<typeof authConfigSchema>;
