export interface UseChatAutoScrollOptions { scrollContainerRef: React.RefObject; enabled?: boolean; triggers: unknown[]; } declare const useChatAutoScroll: ({ scrollContainerRef, enabled, triggers, }: UseChatAutoScrollOptions) => { scrollToEnd: (behavior?: ScrollBehavior) => void; }; export default useChatAutoScroll;