import type { CustomerCardResponse } from '../commonTypes';
import type { CustomerCardCreateClient } from './types';
/**
 * Save a new payment card for a customer.
 *
 * @returns The newly created card record.
 */
export default function create({ customerId, body, config }: CustomerCardCreateClient): Promise<CustomerCardResponse>;
