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