@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.
11 lines (10 loc) • 472 B
TypeScript
import { default as React, ReactNode } from 'react';
import { FormState } from '../hooks/useFormStore';
declare const FormStateContext: React.Context<unknown>;
interface FormStateProviderProps {
children: ReactNode;
initialState?: Partial<FormState>;
}
export declare const FormStateProvider: ({ children, initialState, }: FormStateProviderProps) => import("react/jsx-runtime").JSX.Element;
export declare function useFormState(): {};
export { FormStateContext };