import { z } from 'zod';
import { StepComponentProps } from '../../types/steps';
export declare const trustSchema: z.ZodObject<{
    trustName: z.ZodString;
    taxId: z.ZodString;
    trustCountry: z.ZodString;
}, "strip", z.ZodTypeAny, {
    trustCountry: string;
    trustName: string;
    taxId: string;
}, {
    trustCountry: string;
    trustName: string;
    taxId: string;
}>;
export type TrustFieldsData = z.infer<typeof trustSchema>;
export interface TrustFieldsProps extends StepComponentProps<TrustFieldsData> {
}
export declare const TrustFields: React.FC<TrustFieldsProps>;
export default TrustFields;
