import { EthChainId } from '@sentio/chain'; export declare class BindOptions { address: string; network?: EthChainId; name?: string; start?: TimeOrBlock; end?: TimeOrBlock; startBlock?: bigint | number; endBlock?: bigint | number; baseLabels?: { [key: string]: string; }; } export interface TimeOrBlock { block?: bigint | number; time?: Date; } export declare function getOptionsSignature(opts: BindOptions): string; export declare class AccountBindOptions { address: string; network: EthChainId; startBlock?: bigint | number; baseLabels?: { [key: string]: string; }; } //# sourceMappingURL=bind-options.d.ts.map