import { z } from 'zod';
export declare const logoSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
    light: z.ZodString;
    dark: z.ZodString;
    href: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    light: string;
    dark: string;
    href?: string | undefined;
}, {
    light: string;
    dark: string;
    href?: string | undefined;
}>]>;
