import React from 'react'; import type { SyntheticEvent } from 'react'; interface IProps { value: string; onChange?: (value: string, event: SyntheticEvent) => void; placeholder?: string; className?: string; as?: React.ElementType; } declare const EditableInput: React.ForwardRefExoticComponent>; export default EditableInput;