import type { CustomerResponse } from '../commonTypes';
import type { CustomerUpdateClient } from './types';
/**
 * Update an existing customer's information.
 *
 * @returns The updated customer record.
 */
export default function update({ customerId, body, config }: CustomerUpdateClient): Promise<CustomerResponse>;
