import { Dispatch, SetStateAction } from 'react';
import { ProfileViewProps } from './interfaces/profile.view-props';
import { ProfileEntity } from './profile.entity';
export interface ProfileClientProps {
    viewProps: ProfileViewProps<ProfileEntity>;
    successMessage: boolean;
    setSuccessMessage: Dispatch<SetStateAction<boolean>>;
    formData: {
        [key: string]: any;
    };
    setFormData: Dispatch<SetStateAction<{
        [key: string]: any;
    }>>;
    initialEmail: string;
    setInitialEmail: Dispatch<SetStateAction<string>>;
}
export declare function ProfileClient(props: ProfileClientProps): import("react/jsx-runtime").JSX.Element;
