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