import z from 'zod';
export declare const configSchema: z.ZodObject<{
    host: z.ZodOptional<z.ZodString>;
    api_key: z.ZodString;
    auth_token: z.ZodString;
}, "strip", z.ZodTypeAny, {
    api_key: string;
    auth_token: string;
    host?: string | undefined;
}, {
    api_key: string;
    auth_token: string;
    host?: string | undefined;
}>;
export type Config = z.input<typeof configSchema>;
