export declare const OPERATION_TYPE: {
    readonly UNPRINT: "UnPrint";
    readonly PRINT: "Print";
};
export type OperationType = (typeof OPERATION_TYPE)[keyof typeof OPERATION_TYPE];
