import type { CustomerResponse } from '../commonTypes';
import type { CustomerRemoveClient } from './types';
/**
 * Remove a customer by its unique identifier.
 *
 * @returns The customer record that was deleted.
 */
export default function remove({ customerId, config }: CustomerRemoveClient): Promise<CustomerResponse>;
