import type { ISecretInfo } from './types';
export declare function updateTencentSheet({ accessToken, clientId, openId, bookId, range, values, }: ISecretInfo & {
    bookId: string;
    range: string;
    values: Array<{}>;
}): Promise<any>;
export declare function updateTencentSheetImage({ accessToken, clientId, openId, bookId, insertImages, }: ISecretInfo & {
    bookId: string;
    insertImages: any;
}): Promise<any>;
export declare function batchUpdateTencentSheetV3({ accessToken, clientId, openId, bookId, requests, }: ISecretInfo & {
    bookId: string;
    requests: Record<string, any>;
}): Promise<any>;
