import type { Id, NullableId, Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../../../declarations'; type StripeCustomersCards = any; type StripeCustomersCardsData = any; type StripeCustomersCardsPatch = any; type StripeCustomersCardsQuery = any; export type { StripeCustomersCards, StripeCustomersCardsData, StripeCustomersCardsPatch, StripeCustomersCardsQuery }; export interface StripeCustomersCardsServiceOptions { app: Application; } export interface StripeCustomersCardsParams extends Params { } export declare class StripeCustomersCardsService implements ServiceInterface { options: StripeCustomersCardsServiceOptions; constructor(options: StripeCustomersCardsServiceOptions); find(_params?: ServiceParams): Promise; get(id: Id, _params?: ServiceParams): Promise; create(data: StripeCustomersCardsData, params?: ServiceParams): Promise; create(data: StripeCustomersCardsData[], params?: ServiceParams): Promise; update(id: NullableId, data: StripeCustomersCardsData, _params?: ServiceParams): Promise; patch(id: NullableId, data: StripeCustomersCardsPatch, _params?: ServiceParams): Promise; remove(id: NullableId, _params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };