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