import { SubgraphModuleCompute, SubgraphModuleDefinition } from '@nodescript/core/types';
type P = {
    scope: Record<string, any>;
};
type R = Promise<unknown>;
type SI = {
    [key: string]: unknown;
};
type SO = {
    result: unknown;
};
export declare const module: SubgraphModuleDefinition<P, R, SI, SO>;
export declare const compute: SubgraphModuleCompute<P, R, SI, SO>;
export {};
