import { BigNumber } from 'ethers'; export interface PublishSubgraph { subgraphDeploymentID: string; versionMetadata: string; subgraphMetadata: string; } export interface Subgraph { vSignal: BigNumber; nSignal: BigNumber; subgraphDeploymentID: string; reserveRatioDeprecated: number; disabled: boolean; withdrawableGRT: BigNumber; id?: string; } export declare const buildSubgraphId: (account: string, seqId: number | BigNumber, chainId: number | BigNumber) => Promise; export declare const buildLegacySubgraphId: (account: string, seqID: BigNumber) => string; export declare const buildSubgraph: () => PublishSubgraph; export declare const subgraphIdToHex: (id: string) => string; //# sourceMappingURL=subgraph.d.ts.map