///
import { FieldInputProps } from 'formik';
import { InputFieldProps } from '../../interfaces';
declare type EmojiInputProps = Pick & {
field: FieldInputProps;
};
declare const EmojiInput: ({ setFieldValue, field, maxLength, dataCy, dataTestId, placeholder, isBottom, characterLimit, }: EmojiInputProps) => JSX.Element;
export default EmojiInput;