/// interface MinerTipPanelProps { value: string; onUserInput: (value: string) => void; hideInput?: boolean; id: string; } export default function MinerTipPanel({ value, onUserInput, id, hideInput, ...rest }: MinerTipPanelProps): JSX.Element; export {};