import { EventEmitter, OnInit } from "@angular/core"; import { UntypedFormGroup, ValidatorFn } from "@angular/forms"; import { Subject } from "rxjs"; import { BasicWelcomeHeading, BasicWelcomeImage } from "../../../../../shared"; import { ImageWithAlt } from "../../models/config-interfaces"; import { EnterSessionText } from "../../models/text-interfaces"; import * as i0 from "@angular/core"; export declare class EnterSessionComponent implements OnInit { image?: ImageWithAlt; text: EnterSessionText; idInputName?: string; numericId?: boolean; submitFlow: "row" | "column"; externalInput?: Subject; get validators(): ValidatorFn[]; set validators(validators: ValidatorFn[]); private _validators; get includeHistory(): boolean | undefined; set includeHistory(history: boolean | undefined); private _includeHistory?; submission: EventEmitter<{ id: string; history?: boolean | undefined; }>; entryForm: UntypedFormGroup; private destroyed; ngOnInit(): void; onExternalInput(input: string): void; onSubmit(): void; get welcomeImage(): BasicWelcomeImage | undefined; get welcomeHeading(): BasicWelcomeHeading | undefined; get welcomeSubheading(): BasicWelcomeHeading | undefined; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }