import { AtomViewModel } from "web-atoms-core/dist/view-model/AtomViewModel"; export default class SimpleFormViewModel extends AtomViewModel { model: { firstName: string; lastName: string; emailAddress: string; password: string; passwordAgain: string; }; readonly errorFirstName: string; readonly errorLastName: string; readonly errorEmailAddress: string; readonly errorPassword: string; readonly errorPasswordAgain: string; private navigationService; signup(): Promise; }