import { ID } from '../../commonStateTypes/common'; import { PaymentInstrument, PaymentInstrumentState } from './paymentInstrument'; export declare function getPaymentInstrumentsByIds(paymentInstrumentState: PaymentInstrumentState, paymentInstrumentIds: ID[]): PaymentInstrument[]; export declare function getPaymentInstrumentById(paymentInstrumentState: PaymentInstrumentState, paymentInstrumentId: ID): PaymentInstrument | undefined;