import { RequestOptions, HttpClientResponse } from 'urllib'; export { HttpClientResponse, RequestOptions } from 'urllib'; declare const out: { access(head: string, content?: string): void; info(head: string, content?: string): void; warning(head: string, content?: string): void; err(head: string, content?: string): void; debug(head: string, content?: string): void; }; /** * 网络请求封装 * @param url * @param reqOpts */ declare const request: (url: string, reqOpts?: RequestOptions) => Promise>; declare const enum BlockType { Doc = 0, Text = 1, Todo = 3, Unordered_List = 4, Numbered_List = 5, Toggle = 6, Title = 7,// title有level Dividing = 9, Quote = 12, Emphasis_Text = 13, Media = 14, Embed_Folder = 15, Reference_Page = 16, Data_Table = 18, Data_Table_Inline = 19, Embed_Webpage = 20, Web_Bookmark = 21, Equation = 23, Code = 25, Embed_Media = 26, Table = 27, Table_Row = 28, Reference_Data_Table = 29, Sync_Block = 31, Reference_Data_Table_Page = 33, Mind_Map = 36, Mind_Map_Inline = 37, Toggle_Title = 38 } declare const BlockTypeText: { 0: string; 1: string; 3: string; 4: string; 5: string; 6: string; 7: string; 9: string; 12: string; 13: string; 14: string; 15: string; 16: string; 18: string; 19: string; 20: string; 21: string; 23: string; 25: string; 26: string; 27: string; 28: string; 29: string; 36: string; 37: string; 38: string; }; export { BlockType, BlockTypeText, out, request };