import { ArgumentDataType } from '../../constants'; export interface InvokeReadArgs { scriptHash: string; operation: string; args: Argument[]; network?: string; } interface Argument { type: ArgumentDataType; value: any; } export declare function invokeRead(data: InvokeReadArgs): Promise; export {}; //# sourceMappingURL=invokeRead.d.ts.map