import type { Params, ServiceInterface } from '@feathersjs/feathers'; import type { Application } from '../../declarations'; import type { Support, SupportData, SupportPatch, SupportQuery } from './support.schema'; export type { Support, SupportData, SupportPatch, SupportQuery }; export interface SupportServiceOptions { app: Application; } export interface SupportParams extends Params { } export declare class SupportService implements ServiceInterface { options: SupportServiceOptions; constructor(options: SupportServiceOptions); create(data: SupportData, params?: ServiceParams): Promise; create(data: SupportData[], params?: ServiceParams): Promise; } export declare const getOptions: (app: Application) => { app: Application; };