import type { FormField } from '@funkit/connect-core'; import { type KycFieldIssue } from './kycFormState'; export declare function kycFieldValidators(field: FormField, ssnDigits?: 4 | 9): { onMount: (input: { value: string | undefined; }) => KycFieldIssue | undefined; onChange: (input: { value: string | undefined; }) => KycFieldIssue | undefined; } | undefined; //# sourceMappingURL=kycFieldValidators.d.ts.map