import { InputHTMLAttributes } from 'react'; export interface InputProps extends InputHTMLAttributes { className?: string; isError?: boolean; isFocused?: boolean; } /** * 기본 입력 필드 컴포넌트입니다. * * @component * @param {Object} props - 컴포넌트 props * @param {string} [props.className] - 추가적인 CSS 클래스 * @param {boolean} [props.isError] - 에러 상태 표시 여부 * @param {boolean} [props.isFocused] - 포커스 상태 표시 여부 * @param {boolean} [props.disabled] - 비활성화 상태 여부 * * @extends {InputHTMLAttributes} HTML input 요소의 기본 속성들을 모두 지원합니다. * * @example * // 기본 사용 * * * // 비활성화 상태 * * * // 커스텀 클래스 적용 * * * // 에러 상태 * */ declare const Input: import("react").ForwardRefExoticComponent>; export { Input };