export declare const emitEvents: { readonly start: "start"; readonly finished: "finished"; readonly complete: "complete"; readonly error: "error"; readonly cancel: "cancel"; readonly cancelAll: "cancelAll"; readonly paused: "paused"; readonly pausedAll: "pausedAll"; readonly resumed: "resumed"; readonly resumedAll: "resumedAll"; readonly exists: "exists"; readonly progress: "progress"; }; export declare const emitMessages: { start: string; finished: string; error: string; cancel: string; cancelAll: string; paused: string; pausedAll: string; resumed: string; resumedAll: string; exists: string; progress: string; complete: string; }; export type EmitEventType = keyof typeof emitEvents;