import { InjectionToken } from '@angular/core'; import { AutoExpandHorizontalScroll, MalihuScrollbarOptions } from './malihu-scrollbar-options'; export { AutoExpandHorizontalScroll, MalihuScrollbarOptions, }; export declare const MALIHU_CONFIG_TOKEN: InjectionToken; export declare type ScrollToParameter = string | number | [number, number] | HTMLElement | { x?: number; y?: number; }; export interface ScrollToParameterOptions { scrollInertia?: number; scrollEasing?: string; moveDragger?: boolean; timeout?: number; callbacks?: boolean; }