/** * Copyright © 2023 Nevis Security AG. All rights reserved. */ /** * The generic interface representing an operation returned by {@link Operations}. * * @group Performing Operations */ export declare abstract class Operation { /** * Executes the operation asynchronously. */ abstract execute(): Promise; } //# sourceMappingURL=Operation.d.ts.map