import Node from './../type/node'; import Operation, { OperationInput } from './../operation'; interface Input extends OperationInput { readonly node: Node; readonly field_key: string; readonly offset?: number; readonly limit?: number; } declare class FetchListFieldNodesOperation extends Operation { protected performInternal(): Promise; private fetchListUrls; private fetchNodeForUrl; } export default FetchListFieldNodesOperation;