export declare const OperationStatus: {
    readonly New: "new";
    readonly InProgress: "in progress";
    readonly Completed: "completed";
    readonly Rejected: "rejected";
};
export type OperationStatus = typeof OperationStatus[keyof typeof OperationStatus];
