/**
* A base class for DigitalPersona events.
*/exportdeclareclassEvent {
type: string;
constructor(type: string);
}
/**
* An event signaling a problem with a device channel communication.
*/exportdeclareclassCommunicationFailedextendsEvent {
constructor();
}