import { RpcCallOptions } from '../../../network/index.js';
import { ITelegramClient } from '../../client.types.js';
/**
 * Wrap a client so that all RPC calls will use the specified parameters.
 *
 * @param client Client to wrap
 * @param params RPC call parameters to use by default
 * @returns The wrapped client
 */
export declare function withParams<T extends ITelegramClient>(client: T, params: RpcCallOptions): T;
