/** * Request origin * Indicates whether the request originates from a: * - client: user phone * - service: any web service that allows for signatures to be requested */ export declare enum DIGITAL_SIGNATURE_REQUEST_ORIGIN_TYPE { CLIENT = "client", SERVICE = "service" } export declare enum DIGITAL_SIGNATURE_REQUEST_STATUS { NEW = "new", PENDING = "pending", REJECTED = "rejected", TIMEOUT = "timeout", ERROR = "error", DONE = "done" }