import { BioSealStateModel } from "../../model/bioseal.model"; import { setBiometrics, setBioSealFormat, setBioSealPersonalContent, setBioSealDocumentContent, getBioSeal, setBioSealPractitionerContent, setBioSealTestContent, setBioSealEventContent } from "../actions/bioseal.action"; import { StateContext } from "@ngxs/store"; import { BioSealService } from "../../services/async/connectors/bioseal.service"; export declare class BioSealState { private biosealService; constructor(biosealService: BioSealService); static getQRcodeResult(state: BioSealStateModel): any; static getDatamatrixResult(state: BioSealStateModel): any; static getBioSealData(state: BioSealStateModel): BioSealStateModel; static getBioSealFormat(state: BioSealStateModel): string; static getBiometricsType(state: BioSealStateModel): string; static getBioSeal(state: BioSealStateModel): any; static isBioSealReady(state: BioSealStateModel): boolean; static isBioSealLoading(state: BioSealStateModel): boolean; static isBioSealError(state: BioSealStateModel): boolean; static isTimeOutBioSeal(state: BioSealStateModel): boolean; static getFirstName(state: BioSealStateModel): any; static getLastName(state: BioSealStateModel): any; static getFunction(state: BioSealStateModel): any; static getEventName(state: BioSealStateModel): any; static getEventAddress(state: BioSealStateModel): any; static getEventDate(state: BioSealStateModel): string; static getEventTime(state: BioSealStateModel): any; static isParkingAuthorized(state: BioSealStateModel): any; static isGrandstandAuthorized(state: BioSealStateModel): any; static isPressAuthorized(state: BioSealStateModel): any; static isVIPAuthorized(state: BioSealStateModel): any; static areCloakroomsAuthorized(state: BioSealStateModel): any; static isRestaurantAuthorized(state: BioSealStateModel): any; static isTestFormSubmitted(state: BioSealStateModel): boolean; static isEventFormSubmitted(state: BioSealStateModel): boolean; static isPersonalFormSubmitted(state: BioSealStateModel): boolean; static isDocumentFormSubmitted(state: BioSealStateModel): boolean; static isPractitionerFormSubmitted(state: BioSealStateModel): boolean; static isTestDataLoaded(state: BioSealStateModel): boolean; static isEventDataLoaded(state: BioSealStateModel): boolean; static isPersonalDataLoaded(state: BioSealStateModel): boolean; static isDocumentDataLoaded(state: BioSealStateModel): boolean; static isPractitionerDataLoaded(state: BioSealStateModel): boolean; setDefault({ getState, patchState }: StateContext): void; setDefaultResult({ getState, patchState }: StateContext): void; setBioSealFormat({ getState, patchState }: StateContext, { payload }: setBioSealFormat): void; setBiometrics({ getState, patchState }: StateContext, { payload }: setBiometrics): void; setPersonalFormSubmition({ getState, patchState }: StateContext): void; setDocumentFormSubmition({ getState, patchState }: StateContext): void; setPractitionerFormSubmition({ getState, patchState }: StateContext): void; setTestFormSubmition({ getState, patchState }: StateContext): void; setEventFormSubmition({ getState, patchState }: StateContext): void; setPersonalContent({ getState, patchState }: StateContext, { payload }: setBioSealPersonalContent): void; setDocumentContent({ getState, patchState }: StateContext, { payload }: setBioSealDocumentContent): void; setPractitionerContent({ getState, patchState }: StateContext, { payload }: setBioSealPractitionerContent): void; setTestContent({ getState, patchState }: StateContext, { payload }: setBioSealTestContent): void; setEventContent({ getState, patchState }: StateContext, { payload }: setBioSealEventContent): void; getBioSealImage({ getState, patchState }: StateContext, { payload }: getBioSeal): import("rxjs").Observable; setContentDefault({ getState, patchState }: StateContext): void; }