UNPKG

@hhgtech/hhg-components

Version:
17 lines (16 loc) 586 B
import React from 'react'; import { PersonalInfo } from "../../../interfaces/types"; export type PersonalInfoFormProps = { onClose(): void; onSubmit({ email, birthday, gender, name, }: { email?: string; birthday?: string; gender?: string; name?: string; }): void; loading?: boolean; canSkip?: boolean; errorMessage?: string; initialData?: PersonalInfo; }; export declare const PersonalInfoForm: ({ onClose, onSubmit, canSkip, loading, errorMessage, initialData, }: PersonalInfoFormProps) => React.JSX.Element;