import type { Params } from '@feathersjs/feathers'; import type { ClientApplication } from '../../../../client'; import type { StripeCustomersCards, StripeCustomersCardsData, StripeCustomersCardsPatch, StripeCustomersCardsQuery, StripeCustomersCardsService } from './cards.class'; export type { StripeCustomersCards, StripeCustomersCardsData, StripeCustomersCardsPatch, StripeCustomersCardsQuery }; export type StripeCustomersCardsClientService = Pick>, (typeof stripeCustomersCardsMethods)[number]>; export declare const stripeCustomersCardsPath = "stripe/customers/cards"; export declare const stripeCustomersCardsMethods: readonly ['find', 'get', 'create', 'patch', 'remove']; export declare const stripeCustomersCardsClient: (client: ClientApplication) => void; declare module '../../../../client' { interface ServiceTypes { [stripeCustomersCardsPath]: StripeCustomersCardsClientService; } }