import * as React from "react"; export type InlineEditableProps = Omit, "value" | "onChange"> & { value: string; onValueChange: (value: string) => void; placeholder?: string; disabled?: boolean; inputClassName?: string; displayClassName?: string; }; declare function InlineEditable({ value, onValueChange, placeholder, disabled, className, inputClassName, displayClassName, ...props }: InlineEditableProps): React.JSX.Element; export { InlineEditable };