export declare const pause: unique symbol; export interface IPauseableObject { [pause]?: IPauseControl; } export interface IPauseControl { isPaused(): boolean; pause(): Promise; resume(): Promise; } export declare function getPauseControl(obj: any): IPauseControl | undefined; //# sourceMappingURL=pause-interface.d.ts.map