/// interface Props { name: string; label?: string; placeholder?: string; } declare type InputProps = JSX.IntrinsicElements['input'] & Props; export declare function Input({ name, label, disabled, onBlur, onFocus, onChange, ...rest }: InputProps): JSX.Element; export {};