/** * @typedef {Object} Props * @property {React.Ref} ref * @property {React.MutableRefObject} textInputRef * @property {(value: string) => void} setValue * @property {() => void} emitChange * @property {boolean=} shouldConvertEmojiToImage */ /** * * @param {Props} props */ export function useExpose({ ref, textInputRef, setValue, emitChange, shouldConvertEmojiToImage }: Props): void; export type Props = { ref: React.Ref; textInputRef: React.MutableRefObject; setValue: (value: string) => void; emitChange: () => void; shouldConvertEmojiToImage?: boolean | undefined; };