UNPKG

@lifi/widget

Version:

LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.

15 lines (14 loc) 625 B
/// <reference types="react" /> import type { ExchangeRateUpdateParams } from '@lifi/sdk'; export interface ExchangeRateBottomSheetBase { isOpen(): void; open(resolver: (value: boolean) => void, data: ExchangeRateUpdateParams): void; close(value?: boolean, bottomSheetClose?: boolean): void; } interface ExchangeRateBottomSheetProps { data?: ExchangeRateUpdateParams; onContinue?(): void; onCancel?(): void; } export declare const ExchangeRateBottomSheet: import("react").ForwardRefExoticComponent<ExchangeRateBottomSheetProps & import("react").RefAttributes<ExchangeRateBottomSheetBase>>; export {};