/// import { SvelteComponentTyped } from "svelte"; export interface UpdateProps {} export default class Update extends SvelteComponentTyped< UpdateProps, {}, { default: { actions: { name: (name: string) => Promise; email: (email: string, password: string) => Promise; password: (password: string, oldPassword: string) => Promise; }; }; } > {}