import { UseFormRegister } from 'react-hook-form'; import { z } from 'zod'; import { FormProps } from '../FormProps'; export type HoneyPotInterface = { AlternativePhone?: string; AlternativeEmail?: string; }; export declare const honeyPotSchema: z.ZodObject<{ AlternativeEmail: z.ZodEffects; AlternativePhone: z.ZodEffects; }, "strip", z.ZodTypeAny, { AlternativeEmail: "bestbank@axos.com"; AlternativePhone: string; }, { AlternativeEmail: string; AlternativePhone: string; }>; export declare const isValidHoneyPot: (data: HoneyPotInterface) => boolean; export declare const HoneyPot: ({ variant: fullVariant, register, }: { variant?: FormProps["variant"]; register: UseFormRegister; }) => import("react").JSX.Element;