import { z } from 'zod'; import { KottiAvatar } from '../kotti-avatar/types'; export declare namespace KottiAvatarGroup { const propsSchema: z.ZodObject<{ isHoverable: z.ZodDefault; size: z.ZodDefault, z.ZodNativeEnum]>>; count: z.ZodDefault; isStack: z.ZodDefault; items: z.ZodEffects, "many">, { name: string; src: string; }[], { name: string; src: string; }[]>; }, "strip", z.ZodTypeAny, { isHoverable: boolean; size: "lg" | "md" | "sm" | KottiAvatar.Size; count: number; isStack: boolean; items: { name: string; src: string; }[]; }, { items: { name: string; src: string; }[]; isHoverable?: boolean | undefined; size?: "lg" | "md" | "sm" | KottiAvatar.Size | undefined; count?: number | undefined; isStack?: boolean | undefined; }>; type Props = z.input; type PropsInternal = z.output; }