import type { Address } from 'viem';
export declare function useAssetPrice({ chainId, assetTokenAddress, }: {
    chainId: string | undefined;
    assetTokenAddress: Address | undefined;
}): {
    error: Error | null;
    isLoading: boolean;
    unitPrice: number | undefined;
};
