import type { ISecretInfo } from './types';
export declare function exportTencentDoc({ accessToken, clientId, openId, fileId, exportType, waitTime, }: ISecretInfo & {
    fileId: string;
    exportType: number;
    waitTime?: number;
}): Promise<string | undefined>;
