///
import { SvelteComponentTyped } from "svelte";
export interface CreateProps {}
export default class Create extends SvelteComponentTyped<
CreateProps,
{ success: CustomEvent; failure: CustomEvent },
{
default: {
actions: {
create: (
email: string,
password: string,
name?: string
) => Promise