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;
