import { ApiNextFunction, ApiRequest, ApiResponse } from 'api-machine'; import { RiaoEndpoint, DatabaseRecordWithId } from './base-endpoint'; import { ComposedValSan, ObjectValSan } from 'valsan'; export declare const listValidators: { limit: ComposedValSan; offset: ComposedValSan; orderBy: ComposedValSan; orderDirection: ComposedValSan; }; export declare class RiaoGetListEndpoint extends RiaoEndpoint { path: string; queryExample: { limit: number; offset: number; orderBy: string; orderDirection: string; }; query: ObjectValSan; handle(request: ApiRequest, response: ApiResponse, next: ApiNextFunction): Promise; }