import type { CSSProperties, ChangeEvent } from 'react'; interface InputProps { name: string; style?: CSSProperties; value: string; readOnly?: boolean; onChange?: (event: ChangeEvent) => void; list?: string; } export default function Input(props: InputProps): import("react").JSX.Element; export {}; //# sourceMappingURL=input.d.ts.map