import Mdr from './models/mdr'; export interface GetMdrOptions { card_brand: string | null; capture_method: string | null; mdrs: Mdr[]; payment_method: string | null; } declare const getMdr: ({ card_brand, capture_method, mdrs, payment_method, }: GetMdrOptions) => Mdr | undefined; export default getMdr;