import { FC } from "react"; export type EditAccountProps = { /** * Callback function that gets executed when * 1. The account data are successfully updated * 2. The cancel button is pressed */ onFinish: () => void; }; /** * Form for editing one's own account data. */ declare const EditAccount: FC; export default EditAccount;