/** *Scroll button component automatically scroll to specific point when clicked. */ export declare class DatacomScrollButton { anchorId: string; btnTitle: string; chevronIcon: import("@stencil/core").VNode; onClickHandler: (event: MouseEvent) => void; render(): any; } export type HTMLDatacomScrollButtonElement = HTMLElement & DatacomScrollButton;