import { z } from 'zod';
export declare const faviconSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
    light: z.ZodString;
    dark: z.ZodString;
}, "strip", z.ZodTypeAny, {
    light: string;
    dark: string;
}, {
    light: string;
    dark: string;
}>]>;
