import * as React from "react"; import { PaperGroupProps } from "../Paper/PaperGroup"; interface Props extends Omit { onSubmit({ currentPassword, newPassword, setSubmitError, }: { currentPassword: string; newPassword: string; setSubmitError: (r: React.ReactNode) => void; }): Promise; } export default function ChangePasswordPage({ onSubmit, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export {};