export default useScrollToElement;
declare function useScrollToElement({ id, dataAttributes, scrollOptions, highlightClass, }: {
    id: any;
    dataAttributes?: any[] | undefined;
    scrollOptions?: {
        behavior: string;
    } | undefined;
    highlightClass?: string | undefined;
}): void;
