export declare function useStickToBottom(): {
    ref: (el: HTMLElement) => void;
    isAtBottom: import('solid-js').Accessor<boolean>;
    scrollToBottom: (behavior?: ScrollBehavior) => void;
};
