import type { ConfigParam, SafeClient, SafeConfig } from '../types/index.js';
export type UsePubicClientParams = ConfigParam<SafeConfig>;
export type UsePublicClientReturnType = SafeClient | undefined;
/**
 * Hook to get a SafeClient instance with public capabilities which do not require a signer.
 * @param params Parameters to customize the hook behavior.
 * @param params.config SafeConfig to use instead of the one provided by `SafeProvider`.
 * @returns SafeClient instance or `undefined` if the SafeClient is not initialized yet.
 */
export declare function usePublicClient(params?: UsePubicClientParams): UsePublicClientReturnType;
