import { z } from 'zod';
import { APP_VERSION_STATUS } from '../../consts/app-versions.js';
export declare const promoteAppSchema: z.ZodObject<{
    status: z.ZodNativeEnum<typeof APP_VERSION_STATUS>;
    statusCode: z.ZodNumber;
    headers: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodString]>>;
}, "strip", z.ZodTypeAny, {
    statusCode: number;
    headers: Record<string, string | string[]>;
    status: APP_VERSION_STATUS;
}, {
    statusCode: number;
    headers: Record<string, string | string[]>;
    status: APP_VERSION_STATUS;
}>;
