import { Application } from '@feathersjs/feathers'; import { OAuthStrategy, OAuthProfile } from './strategy'; import { OAuthService } from './service'; import { OauthSetupSettings } from './utils'; export { OauthSetupSettings, OAuthStrategy, OAuthProfile, OAuthService }; export declare const oauth: (settings?: Partial) => (app: Application) => void;