import type { CustomerCardResponse } from '../commonTypes'; import type { CustomerCardGetRemoveClient } from '../get/types'; /** * Remove a saved card from a customer's wallet. * * @returns The card record that was deleted. */ export default function remove({ customerId, cardId, config }: CustomerCardGetRemoveClient): Promise;