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.

30 lines (29 loc) 921 B
import { z } from 'zod'; import { StepComponentProps } from '../../types/steps'; export declare const individualAddressSchema: z.ZodObject<{ address1: z.ZodString; address2: z.ZodOptional<z.ZodString>; city: z.ZodString; state: z.ZodString; zip: z.ZodString; country: z.ZodString; }, "strip", z.ZodTypeAny, { country: string; address1: string; city: string; state: string; zip: string; address2?: string | undefined; }, { country: string; address1: string; city: string; state: string; zip: string; address2?: string | undefined; }>; export type IndividualAddressFieldsData = z.infer<typeof individualAddressSchema>; export interface IndividualAddressFieldsProps extends StepComponentProps<IndividualAddressFieldsData> { } export declare const IndividualAddressFields: React.FC<IndividualAddressFieldsProps>; export default IndividualAddressFields;