import type { CustomerGetClient } from './types';
import type { CustomerResponse } from '../commonTypes';
/**
 * Retrieve a customer by its unique identifier.
 *
 * @returns The customer record matching the given ID.
 */
export default function get({ customerId, config }: CustomerGetClient): Promise<CustomerResponse>;
