import type { CustomerCardGetRemoveClient } from './types';
import type { CustomerCardResponse } from '../commonTypes';
/**
 * Retrieve a specific saved card for a customer.
 *
 * @returns The card record matching the given customer and card IDs.
 */
export default function get({ customerId, cardId, config }: CustomerCardGetRemoveClient): Promise<CustomerCardResponse>;
