import React from 'react';
import type { ReactNode } from 'react';
interface EmojiPickerInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'onChange'> {
    placeholder?: string;
    endIcon?: ReactNode;
    onClear?: () => void;
    className?: string;
    hideIcon?: boolean;
    autoFocus?: boolean;
}
export declare const EmojiPickerInput: React.ForwardRefExoticComponent<EmojiPickerInputProps & React.RefAttributes<HTMLInputElement>>;
export {};
