import { IThirdwebClient } from '../type/ClientType';
/**
 * Initialize Thirdweb client from clientId. Use for testing local if you want to keep session
 *
 * @param {string} clientId - API client id
 * @returns {IThirdwebClient} - ThirdwebClient
 */
export declare const createThirdwebClientWithClientId: (clientId: string) => IThirdwebClient;
/**
 * Initialize Thirdweb client from secretKey. Use for the BE to bypass login
 *
 * @param {string} secretKey - API secret key
 * @returns {IThirdwebClient} - ThirdwebClient
 */
export declare function createThirdwebClientWithSecretKey(secretKey: string): IThirdwebClient;
