import { StripeExtension } from "./index.js";
/**
 * Get customer data
 *
 * @param customerId - customer id (see: https://stripe.com/docs/api/customers/object#customer_object-id)
 * @param ephemeralKey - customer ephemeral key
 * @returns
 */
export declare const getCustomer: (this: StripeExtension, customerId: string, ephemeralKey: string) => Promise<any>;
