UNPKG

@kanalabs/kana-widget-v2

Version:

Kana Widget for cross-chain bridging and swap.

18 lines (17 loc) 645 B
interface EvmGasToastState { message: string; isDarkMode: boolean; isVisible: boolean; showToast: (message: string, isDarkMode: boolean) => void; hideToast: () => void; } export declare const useEvmGasToastStore: import("zustand").UseBoundStore<import("zustand").StoreApi<EvmGasToastState>>; interface RedeemToastState { explorerLink: string; isDarkMode: boolean; isVisible: boolean; showToast: (explorerLink: string, isDarkMode: boolean) => void; hideToast: () => void; } export declare const useRedeemToastStore: import("zustand").UseBoundStore<import("zustand").StoreApi<RedeemToastState>>; export {};