import React, { ReactNode } from 'react';
import { FormInstance } from 'antd';
type ProfileFormProps = {
    children?: ReactNode;
    className?: string;
    form?: FormInstance;
    loading?: boolean;
    message?: string;
    onSubmit: (values: unknown) => void;
    showSecondaryButton?: boolean;
    secondaryButtonAction?: () => void;
    secondaryButtonLabel?: string;
    submitButtonLabel?: string;
    submissionStatus?: 'success' | 'error' | 'danger';
};
declare const ProfileForm: (props: ProfileFormProps) => React.ReactNode;
export default ProfileForm;
