import React, { PropsWithChildren } from 'react'; export declare type ChatAutoCompleteProps = { rows?: number; placeholder?: string; onChange?: React.ChangeEventHandler; value?: string; }; export declare const ChatAutoComplete: (props: PropsWithChildren) => JSX.Element;