import { FC } from "react"; import { ITextProps } from "native-base"; import { BaseButtonProps } from "../../core/buttons/BaseButton"; export interface Web3ActionProps extends Omit { supportedChains: number[]; innerIndicatorText?: ITextProps; web3Action: () => Promise | void; switchChain?: (requiredChain: number) => Promise; handleConnect?: () => Promise | void; onEvent?: (event: string) => void; } export declare const Web3ActionButton: FC; //# sourceMappingURL=Web3Action.d.ts.map