import type Koa from 'koa'; declare const releaseController: { /** * Find releases based on documents attached or not to the release. * If `hasEntryAttached` is true, it will return all releases that have the entry attached. * If `hasEntryAttached` is false, it will return all releases that don't have the entry attached. */ findByDocumentAttached(ctx: Koa.Context): Promise; findPage(ctx: Koa.Context): Promise; findOne(ctx: Koa.Context): Promise; mapEntriesToReleases(ctx: Koa.Context): Promise; create(ctx: Koa.Context): Promise; update(ctx: Koa.Context): Promise; delete(ctx: Koa.Context): Promise; publish(ctx: Koa.Context): Promise; }; export default releaseController; //# sourceMappingURL=release.d.ts.map