import { ApiNextFunction, ApiRequest, ApiResponse, NotFoundError } from 'api-machine'; import { RiaoEndpoint, DatabaseRecordWithId } from './base-endpoint'; export declare class RiaoGetOneEndpoint extends RiaoEndpoint { path: string; getErrors(): { not_found: NotFoundError; }; handle(request: ApiRequest, response: ApiResponse, next: ApiNextFunction): Promise; }