import React from "react"; interface IconPickerInputProps { value: string; onChange: (value: string) => void; inputRef: React.RefObject; } declare const IconPickerInput: (props: IconPickerInputProps) => React.JSX.Element; export { IconPickerInput, type IconPickerInputProps };