import { z } from 'zod';
export declare const configurationSchema: z.ZodObject<{
    secrets: z.ZodArray<z.ZodObject<{
        label: z.ZodOptional<z.ZodString>;
        key: z.ZodString;
        filePath: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        key: string;
        filePath: string;
        label?: string | undefined;
    }, {
        key: string;
        filePath: string;
        label?: string | undefined;
    }>, "many">;
    skipKeyword: z.ZodOptional<z.ZodString>;
    region: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    secrets: {
        key: string;
        filePath: string;
        label?: string | undefined;
    }[];
    skipKeyword?: string | undefined;
    region?: string | undefined;
}, {
    secrets: {
        key: string;
        filePath: string;
        label?: string | undefined;
    }[];
    skipKeyword?: string | undefined;
    region?: string | undefined;
}>;
