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