import Node from './../type/node'; import { ListValue } from './../type/field-value'; import Operation, { OperationInput } from './../operation'; interface Input extends OperationInput { readonly node: Node; readonly field_key: string; } declare class FetchListFieldValuesOperation extends Operation { protected performInternal(): Promise; private getFieldKey; private getNode; } export default FetchListFieldValuesOperation;