/** * Universal Swagger types and utilities * This interface can be extended for more precise typing if needed. */ export interface AppSchemaTemplate { body?: Record; querystring?: Record; params?: Record; headers?: Record; response?: Record; description?: string; tags?: string[]; summary?: string; [key: string]: any; } /** * Shared swagger types used in API documentation */ export declare enum SwaggerTypes { String = "string", Number = "number", Object = "object", Array = "array", Boolean = "boolean" }