/** * Action Types for the Features group * @public */ export declare enum ActionType { OPEN_CAMERA = "APP::SCANNER::OPEN::CAMERA", OPEN_NFC = "APP::SCANNER::OPEN::NFC", CAPTURE = "APP::SCANNER::CAPTURE" } /** * Actions available to the Features group * @public */ export declare enum Action { OPEN_CAMERA = "OPEN::CAMERA", OPEN_NFC = "OPEN::NFC", CAPTURE = "CAPTURE" } /** * Payload for APP::SCANNER::CAPTURE * @public */ export interface Data { scanData?: string; } export interface Payload { readonly data: Data; } export interface Options { readonly id?: string; }