export interface BtApiParameter { name: string; required: boolean; type: string; description: string; } export interface BtApiOperation { id: string; title: string; description: string; method: 'GET' | 'POST'; path: string; action?: string; parameters: BtApiParameter[]; } export declare const BT_OFFICIAL_API_CATALOG_VERSION = "1f8efe62fa9757d71a7259b063bd63e3775e2e3c"; export declare const BT_OFFICIAL_API_OPERATIONS: readonly BtApiOperation[]; export declare const BT_OFFICIAL_API_OPERATION_BY_ID: Map; //# sourceMappingURL=api-catalog.generated.d.ts.map