import { z } from 'zod';
export declare const footerSchema: z.ZodObject<{
href: z.ZodString;
message: z.ZodString;
}, "strip", z.ZodTypeAny, {
message: string;
href: string;
}, {
message: string;
href: string;
}>;
export type FooterSchema = z.infer<typeof footerSchema>;