import { Interaction } from './interaction'; export class Login extends Interaction { dynamicContent: { _root: { "t-on-submit": (ev: Event) => void; }; }; /** * Prevents the user from crazy clicking: * Gives the button a loading effect if preventDefault was not already * called and modifies the preventDefault function of the event so that the * loading effect is removed if preventDefault() is called in a following * customization. * * @param {Event} ev */ onSubmit(ev: Event): void; }