import { Cardano } from '@cardano-sdk/core'; import { Hash28ByteBase16 } from '@cardano-sdk/crypto'; import { WithUtxo } from './withUtxo'; export interface Address { address: Cardano.PaymentAddress; type: Cardano.AddressType; paymentCredentialHash?: Hash28ByteBase16; stakeCredential?: Hash28ByteBase16 | Cardano.Pointer; } export interface WithAddresses { addresses: Address[]; } export declare const withAddresses: () => import("../..").ExtChainSyncOperator; //# sourceMappingURL=withAddresses.d.ts.map