UNPKG

@rajkrajpj/cultivate-ui-library

Version:

A modern, type-safe, accessible React component library for fintech investor forms. Build complete investor forms in minutes with zero configuration, supporting multiple regulations (RegA+, RegD, RegCF) and investor types.

21 lines (20 loc) 616 B
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;