UNPKG

@roochnetwork/rooch-sdk-kit

Version:
8 lines (7 loc) 387 B
import { ReactNode } from 'react'; import { ControlledModalProps } from '../ui/Modal.js'; export type SwapGasModalProps = { /** The trigger button that opens the dialog. */ trigger: NonNullable<ReactNode>; } & ControlledModalProps; export declare function SwapGasModal({ trigger, open, defaultOpen, onOpenChange }: SwapGasModalProps): import("react/jsx-runtime.js").JSX.Element;