import { BarcodeLinkFlowDelegate } from "./BarcodeLinkFlowDelegate";
export interface BarcodeLinkFlow<T> {
    setDelegate(delegate: BarcodeLinkFlowDelegate): void;
    initialize(): Promise<T>;
    dispose(): void;
}
