import type { Params } from '@feathersjs/feathers'; import { MongoDBService } from '@feathersjs/mongodb'; import { KeysParams } from './keys.class'; import type { Keys, KeysData, KeysPatch } from './keys.schema'; export declare class KeysService extends MongoDBService { constructor(options: any); create(data: KeysData & { _rawApiKey?: string; }, params?: KeysParams): Promise; create(data: (KeysData & { _rawApiKey?: string; })[], params?: KeysParams): Promise; }