export interface FeishuResponse { code: number; msg: string; data?: any; } export interface FeishuPaginatedData { items?: any[]; page_token?: string; has_more?: boolean; total?: number; } export declare function parseFeishuResponse(response: any): any; export declare function simplifyRecord(record: any): any; export declare function simplifyRecords(records: any[]): any[]; //# sourceMappingURL=response.d.ts.map