import type { CustomerCardResponse } from '../commonTypes'; import type { CustomerCardUpdateClient } from './types'; /** * Update an existing saved card for a customer. * * @returns The updated card record. */ export default function update({ customerId, cardId, body, config }: CustomerCardUpdateClient): Promise;