import { z } from 'zod';
export declare const GitHubConfigSchema: z.ZodEffects<z.ZodObject<{
    deploy: z.ZodBoolean;
    flyConfig: z.ZodString;
    flyPostgresPreview: z.ZodOptional<z.ZodString>;
    flyPostgresProduction: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    deploy: boolean;
    flyConfig: string;
    flyPostgresPreview?: string | undefined;
    flyPostgresProduction?: string | undefined;
}, {
    deploy: boolean;
    flyConfig: string;
    flyPostgresPreview?: string | undefined;
    flyPostgresProduction?: string | undefined;
}>, {
    deploy: boolean;
    flyConfig: string;
    flyPostgresPreview?: string | undefined;
    flyPostgresProduction?: string | undefined;
}, unknown>;
export type GitHubConfig = z.infer<typeof GitHubConfigSchema>;
