export type Operation = { Priority: number; Name: string; Create: () => T; Options: { Cancel: string[]; }; }; export declare class Tasks { }