import Koa from 'koa'; import { Application as FeathersApplication } from '@feathersjs/feathers'; import { koaBody as bodyParser } from 'koa-body'; import cors from '@koa/cors'; import serveStatic from 'koa-static'; import { Application } from './declarations'; export { Koa, bodyParser, cors, serveStatic }; export * from './authentication'; export * from './declarations'; export * from './handlers'; export * from './rest'; export declare function koa(feathersApp?: FeathersApplication, koaApp?: Koa): Application;