/** * FEWD common js lib functions * * @module */ export { auto_resize, auto_scroll_to_bottom }; declare function auto_resize(checkbox_element: HTMLInputElement, target_element: HTMLTextAreaElement, max_height: number): void; declare function auto_scroll_to_bottom(checkbox_element: HTMLInputElement, target_element: HTMLTextAreaElement): void;