///
import { SvelteComponentTyped } from "svelte";
export interface RecoverPasswordProps {}
export default class RecoverPassword extends SvelteComponentTyped<
RecoverPasswordProps,
{},
{
default: {
actions: {
recover: (email: string, url: string) => Promise;
complete: (
user: string,
secret: string,
password: string,
passwordAgain: string
) => Promise;
};
};
}
> {}