import { z } from 'zod'; export declare namespace KottiAvatar { enum Size { LARGE = "lg", MEDIUM = "md", SMALL = "sm" } const propsSchema: z.ZodObject<{ isHoverable: z.ZodDefault; name: z.ZodDefault>; size: z.ZodDefault, z.ZodNativeEnum]>>; src: z.ZodDefault>; }, "strip", z.ZodTypeAny, { isHoverable: boolean; name: string | null; size: "lg" | "md" | "sm" | Size; src: string | null; }, { isHoverable?: boolean | undefined; name?: string | null | undefined; size?: "lg" | "md" | "sm" | Size | undefined; src?: string | null | undefined; }>; type Props = z.input; type PropsInternal = z.output; }