import { z } from 'zod';
import { StepComponentProps } from '../../types/steps';
export declare const trustIdentitySchema: z.ZodEffects<z.ZodObject<{
    investorType: z.ZodString;
    birthDate: z.ZodString;
    ssn: z.ZodOptional<z.ZodString>;
    tin: z.ZodOptional<z.ZodString>;
    trustCountry: z.ZodString;
}, "strip", z.ZodTypeAny, {
    trustCountry: string;
    investorType: string;
    birthDate: string;
    ssn?: string | undefined;
    tin?: string | undefined;
}, {
    trustCountry: string;
    investorType: string;
    birthDate: string;
    ssn?: string | undefined;
    tin?: string | undefined;
}>, {
    trustCountry: string;
    investorType: string;
    birthDate: string;
    ssn?: string | undefined;
    tin?: string | undefined;
}, {
    trustCountry: string;
    investorType: string;
    birthDate: string;
    ssn?: string | undefined;
    tin?: string | undefined;
}>;
export type TrustIdentityFormData = z.infer<typeof trustIdentitySchema>;
export declare const TrustIdentityFields: ({ onSubmit, onBack, defaultValues, context, offeringParams, }: StepComponentProps<TrustIdentityFormData>) => import("react/jsx-runtime").JSX.Element;
export default TrustIdentityFields;
