/** @typedef {typeof __propDef.props} AuthorizerRootProps */ /** @typedef {typeof __propDef.events} AuthorizerRootEvents */ /** @typedef {typeof __propDef.slots} AuthorizerRootSlots */ export default class AuthorizerRoot extends SvelteComponentTyped<{ onForgotPassword?: Function | undefined; roles?: string[] | undefined; onLogin?: Function | undefined; onSignup?: Function | undefined; onMagicLinkLogin?: Function | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type AuthorizerRootProps = typeof __propDef.props; export type AuthorizerRootEvents = typeof __propDef.events; export type AuthorizerRootSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { onForgotPassword?: Function | undefined; roles?: string[] | undefined; onLogin?: Function | undefined; onSignup?: Function | undefined; onMagicLinkLogin?: Function | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};