import { Cardano } from '@cardano-sdk/core'; import { WithCertificates } from './withCertificates'; import { WithEpochNo } from '../../../types'; export interface WithCertificateSource { source: Cardano.Pointer; } export declare type PoolUpdate = Omit & WithCertificateSource; export declare type PoolRetirement = Omit & WithCertificateSource; export interface WithStakePools { stakePools: { updates: PoolUpdate[]; retirements: PoolRetirement[]; }; } export declare const withStakePools: () => import("../../../types").ExtChainSyncOperator; //# sourceMappingURL=withStakePools.d.ts.map