import { IOperationExecutor } from './types'; export declare class OperationFactory { private static operations; static getOperation(operationType: string): IOperationExecutor; static getSupportedOperations(): string[]; static isSupported(operationType: string): boolean; }