import { TokenWithImage } from "../../types/types"; interface FreeBetInputProps { amount: string; token: TokenWithImage; isDisabled: boolean; onClick: () => void; onRemoveFreebet: () => void; } export declare function FreeBetInput({ amount, token, isDisabled, onClick, onRemoveFreebet, }: FreeBetInputProps): import("react/jsx-runtime").JSX.Element; export {};