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.

14 lines (13 loc) 593 B
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 {};