import { IOperationEntity } from '../definition'; export declare class Operation implements IOperationEntity { id: string; /** * @stable [26.02.2019] * @param {string} id * @returns {IOperationEntity} */ static create(id?: string): IOperationEntity; /** * @stable [26.02.2019] * @param {string} id */ constructor(id?: string); }