@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.
25 lines (24 loc) • 757 B
TypeScript
import { z } from 'zod';
import { StepComponentProps } from '../types/steps';
export declare const getStartedSchema: z.ZodObject<{
email: z.ZodString;
firstName: z.ZodString;
lastName: z.ZodString;
isAgreed: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
email: string;
firstName: string;
lastName: string;
isAgreed?: boolean | undefined;
}, {
email: string;
firstName: string;
lastName: string;
isAgreed?: boolean | undefined;
}>;
export type GetStartedFormData = z.infer<typeof getStartedSchema>;
export interface GetStartedProps extends StepComponentProps<GetStartedFormData> {
showAgreement?: boolean;
}
export declare const GetStarted: React.FC<GetStartedProps>;
export default GetStarted;