import { AgInput, InputProps } from '../core/Input'; import * as React from 'react'; /** * React-specific props for Input * * Following AgnosticUI v2 event conventions: * - All events are native (click, input, change, focus, blur) * - Native events work automatically in React, no event mapping needed */ export interface ReactInputProps extends InputProps { children?: React.ReactNode; className?: string; id?: string; onClick?: (event: MouseEvent) => void; onInput?: (event: InputEvent) => void; onChange?: (event: Event) => void; onFocus?: (event: FocusEvent) => void; onBlur?: (event: FocusEvent) => void; } export declare const ReactInput: import('@lit/react').ReactWebComponent; //# sourceMappingURL=ReactInput.d.ts.map