@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.
18 lines (17 loc) • 843 B
TypeScript
/// <reference types="react" />
import type { LifiStep, Step } from '@lifi/sdk';
import type { WidgetSubvariant } from '../../types';
import type { StepActionsProps, StepDetailsLabelProps } from './types';
export declare const StepActions: React.FC<StepActionsProps>;
export declare const IncludedSteps: React.FC<{
step: LifiStep;
subvariant?: WidgetSubvariant;
}>;
export declare const StepDetailsContent: React.FC<{
step: Step;
subvariant?: WidgetSubvariant;
}>;
export declare const CustomStepDetailsLabel: React.FC<StepDetailsLabelProps>;
export declare const CrossStepDetailsLabel: React.FC<Omit<StepDetailsLabelProps, 'variant'>>;
export declare const SwapStepDetailsLabel: React.FC<Omit<StepDetailsLabelProps, 'variant'>>;
export declare const ProtocolStepDetailsLabel: React.FC<Omit<StepDetailsLabelProps, 'variant'>>;