import * as utils from 'sportident/lib/utils'; export interface ISiExternalApplication extends utils.IEventTarget { send: (uint8Data: number[]) => void; close: () => void; } export declare class SiExternalApplicationReceiveEvent extends utils.Event<'receive'> { siExternalApplication: ISiExternalApplication; uint8Data: number[]; constructor(siExternalApplication: ISiExternalApplication, uint8Data: number[]); } export type SiExternalApplicationEvents = { 'receive': SiExternalApplicationReceiveEvent; }; //# sourceMappingURL=ISiExternalApplication.d.ts.map