import Node from './../type/node'; import Operation, { OperationInput } from './../operation'; interface Input extends OperationInput { readonly id: string; readonly type_id: string; readonly version?: number; } declare class FetchNodeOperation extends Operation { protected performInternal(): Promise; private fetchNode; private checkNodePermission; } export default FetchNodeOperation;