import { z } from "zod";
export declare const DigiflazzConfigSchema: z.ZodObject<{
    username: z.ZodString;
    apikey: z.ZodString;
}, "strip", z.ZodTypeAny, {
    username: string;
    apikey: string;
}, {
    username: string;
    apikey: string;
}>;
export type DigiflazzConfig = z.infer<typeof DigiflazzConfigSchema>;
