export type ApiMethod = 'GET' | 'POST' | 'DELETE'; export interface ApiParamMetadata { name: string; required?: boolean; description?: string; } export interface ApiMetadataItem { name: string; category: string; method: ApiMethod; path: string; aliases?: string[]; queryParams?: ApiParamMetadata[]; pathParams?: ApiParamMetadata[]; bodyExample?: unknown; authRequired?: boolean; cookieRequired?: boolean; } export declare const apiMetadata: ApiMetadataItem[]; export declare const apiMetadataPaths: string[];