import { z } from 'zod';
export declare const ActionInputsSchema: z.ZodObject<{
    env: z.ZodArray<z.ZodString, "many">;
    flyApiToken: z.ZodString;
    flyOrg: z.ZodString;
    flyRegion: z.ZodString;
    mainBranch: z.ZodString;
    optOutDepotBuilder: z.ZodBoolean;
    secrets: z.ZodArray<z.ZodString, "many">;
    token: z.ZodString;
}, "strip", z.ZodTypeAny, {
    env: string[];
    secrets: string[];
    token: string;
    flyApiToken: string;
    flyOrg: string;
    flyRegion: string;
    mainBranch: string;
    optOutDepotBuilder: boolean;
}, {
    env: string[];
    secrets: string[];
    token: string;
    flyApiToken: string;
    flyOrg: string;
    flyRegion: string;
    mainBranch: string;
    optOutDepotBuilder: boolean;
}>;
export type ActionInputs = z.infer<typeof ActionInputsSchema>;
