import type { GenericViewFunction } from '@dedot/types'; import { Executor } from './Executor.js'; /** * @name ViewFunctionExecutor * @description Execute view functions using the runtimeViewFunction API */ export declare class ViewFunctionExecutor extends Executor { #private; doExecute(pallet: string, viewFunction: string): GenericViewFunction; }