import type { ISecretInfo } from './types'; export declare function createTencentDoc({ accessToken, clientId, openId, type, title, folderId, }: ISecretInfo & { type: number; title: string; folderId?: string; }): Promise; export declare function convertTencentFileId({ accessToken, clientId, openId, type, value, }: ISecretInfo & { type: number; value: string; }): Promise; export declare function uploadTencentDocImage({ accessToken, clientId, openId, image, }: ISecretInfo & { image: string; }): Promise; export declare function asyncExportTencentDoc({ accessToken, clientId, openId, fileId, exportType, }: ISecretInfo & { fileId: string; exportType: number; }): Promise; export declare function checkExportTencentDocProgress({ accessToken, clientId, openId, fileId, operationId, }: ISecretInfo & { fileId: string; operationId: string; }): Promise;