import type { TKAAPISchemas } from '../types.js'; declare const defaultSchemas: (modelName: string) => TKAAPISchemas; declare const defaultQueries: { $id: string; type: string; properties: { fields: { type: string; properties: { fields: { type: string; description: string; }; }; }; list: { type: string; properties: { offset: { type: string; description: string; }; skip: { type: string; description: string; }; limit: { type: string; description: string; }; page: { type: string; description: string; }; window: { type: string; description: string; }; sort: { type: string; description: string; }; filter: { type: string; description: string; }; fields: { type: string; description: string; }; }; }; }; }; declare const defaultHttpCode: { $id: string; type: string; properties: { 204: { type: string; description: string; properties: { message: { type: string; example: string; }; statusCode: { type: string; example: number; }; }; }; 404: { type: string; description: string; properties: { error: { type: string; example: string; }; message: { type: string; example: string; }; statusCode: { type: string; example: number; }; }; }; 500: { type: string; description: string; properties: { error: { type: string; example: string; }; message: { type: string; example: string; }; statusCode: { type: string; example: number; }; }; }; }; }; export { defaultSchemas, defaultHttpCode, defaultQueries };