import { type PostDataProps } from './hooks/useChangeUserPassword';
export interface ChangePasswordPageProps {
    backHome?: string;
    submitButtonText?: string;
    onSuccess: () => void;
    onError: (error: Error) => void;
    handleUpdatePassword: (data: PostDataProps) => Promise<void>;
    onClickBackHome: () => void;
}
declare const ChangePasswordPage: ({ backHome, submitButtonText, onSuccess, onError, handleUpdatePassword, onClickBackHome, }: ChangePasswordPageProps) => import("react/jsx-runtime").JSX.Element;
export default ChangePasswordPage;
