import { z } from 'zod';
export declare const redirectsSchema: z.ZodEffects<z.ZodArray<z.ZodObject<{
    source: z.ZodString;
    destination: z.ZodString;
    permanent: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
    source: string;
    destination: string;
    permanent?: boolean | undefined;
}, {
    source: string;
    destination: string;
    permanent?: boolean | undefined;
}>, "many">, {
    source: string;
    destination: string;
    permanent?: boolean | undefined;
}[], {
    source: string;
    destination: string;
    permanent?: boolean | undefined;
}[]>;
