import { AssociationDetails, GetAssociationInterface } from './interface'; /** * Fetches the payer-vendor association row from * GET /associations/{payerId}/{vendorId}. * * The endpoint returns the association payload directly (NOT wrapped in a * `{ data }` envelope), or an empty body when no association exists. * Returns the association object when a row exists, otherwise `null`. */ declare const getAssociation: ({ payerId, vendorId, token }: GetAssociationInterface) => Promise; export default getAssociation;