import { USECASE } from "../../model/usecase.model"; export declare class setDefaultGlobal { static readonly type = "[Global] set default Global state"; constructor(); } export declare class setPrimaryColor { payload: string; static readonly type = "[Global] Update primary color"; constructor(payload: string); } export declare class setSecondaryColor { payload: string; static readonly type = "[Global] Update secondary color"; constructor(payload: string); } export declare class setTertiaryColor { payload: string; static readonly type = "[Global] Update tertiary color"; constructor(payload: string); } export declare class setBarcodeType { payload: string; static readonly type = "[Global] Update barcode type"; constructor(payload: string); } export declare class setLanguage { payload: string; static readonly type = "[Global] Update language"; constructor(payload: string); } export declare class setFaceUrl { payload: string; static readonly type = "[Global] Set face url"; constructor(payload: string); } export declare class setBioSealUrl { payload: string; static readonly type = "[Global] Set bioseal url"; constructor(payload: string); } export declare class setToken { payload: string; static readonly type = "[Global] Set token"; constructor(payload: string); } export declare class setVerificationUrl { payload: string; static readonly type = "[Global] Set verification url"; constructor(payload: string); } export declare class setPhotoDisplay { payload: boolean; static readonly type = "[Global] Set photo display configuration"; constructor(payload: boolean); } export declare class setContentType { payload: boolean; static readonly type = "[BioSeal] Update BioSeal Content type"; constructor(payload: boolean); } export declare class setConnectionFace { static readonly type = "[Face] Set facepad communication"; constructor(); } export declare class setConnectionBioSeal { static readonly type = "[BioSeal] Set bioseal communication"; constructor(); } export declare class restartSteps { static readonly type = "[Workflow] Start workflow steps"; constructor(); } export declare class incrementStep { static readonly type = "[Workflow] Increment workflow steps"; constructor(); } export declare class decrementStep { static readonly type = "[Workflow] Decrement workflow steps"; constructor(); } export declare class setSTEP { payload: any; static readonly type = "[Workflow] set workflow step"; constructor(payload: any); } export declare class confirmBioSealPersonalContent { payload: boolean; static readonly type = "[BioSeal] Confirm BioSeal personal content"; constructor(payload: boolean); } export declare class confirmBioSealDocumentContent { payload: boolean; static readonly type = "[BioSeal] Confirm BioSeal document content"; constructor(payload: boolean); } export declare class setupUseCase { payload: USECASE; static readonly type = "[Workflow] Setup Use Case"; constructor(payload: USECASE); }