import { z } from "zod"; export declare const ContactEmptyStatePropsSchema: z.ZodObject<{ title: z.ZodDefault; description: z.ZodDefault; buttonLabel: z.ZodDefault; onAdd: z.ZodFunction, z.ZodVoid>; icon: z.ZodOptional; }, "strip", z.ZodTypeAny, { title: string; description: string; onAdd: (...args: unknown[]) => void; buttonLabel: string; icon?: any; }, { onAdd: (...args: unknown[]) => void; title?: string | undefined; icon?: any; description?: string | undefined; buttonLabel?: string | undefined; }>; export type ContactEmptyStateProps = z.infer;