/// type Props = { behavior?: 'auto' | 'smooth'; heightOfEndOfList?: number; }; declare function useAutoScrollToBottom({ behavior, heightOfEndOfList }?: Props): { triggerScrollToBottom: () => void; EndOfList: () => JSX.Element; }; export default useAutoScrollToBottom;