import { type ComponentProps, type ReactNode } from 'react'; import { Input } from '../Input'; type Props = ComponentProps & { /** 入力欄に紐付けるツールチップに表示するメッセージ */ tooltipMessage: ReactNode; }; export declare const InputWithTooltip: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export {};