import { CurrencyResponseVM, RequestError, UserAssetResponseVM } from "../services"; export declare type Asset = UserAssetResponseVM & CurrencyResponseVM & { displayName: string; }; declare const useAssets: ({ onSuccess, onError, }?: { onSuccess?: ((data: Asset[]) => void) | undefined; onError?: ((error?: RequestError | Error | null) => void) | undefined; }) => { allAssets: Asset[] | undefined; userAssets: Asset[] | undefined; errorUserAsset: RequestError | Error | null; remove: () => void; isLoading: boolean; error: Error | null; refetch: () => void; getAssetBySymbol: (symbol: string) => Asset | undefined; }; export { useAssets }; //# sourceMappingURL=useAssets.d.ts.map