import type { CustomerCardListClient } from './types';
import type { CustomerCardResponse } from '../commonTypes';
/**
 * List all saved payment cards for a customer.
 *
 * @returns An array of card records belonging to the customer.
 */
export default function list({ customerId, config }: CustomerCardListClient): Promise<CustomerCardResponse[]>;
