UNPKG

tri-test-tanto-widget

Version:
12 lines (11 loc) 345 B
/// <reference types="react" /> export interface TantoConfig { reducedMotion?: boolean; disableProfile?: boolean; hideConnectSuccessPrompt?: boolean; initialChainId?: number; } export interface TantoState { config: TantoConfig; } export declare const TantoContext: import("react").Context<TantoState | undefined>;