import type { ISlottableProps } from '../../../Behaviors/Slottable'; /** * Represents the `IScrollElementProps` interface. * * @public */ export interface IScrollElementProps extends ISlottableProps { /** * Whether to show scroll navigation buttons (prev/next) when content overflows horizontally. */ showScrollButtons: boolean; /** * Whether to show the native scrollbar. */ showScrollbar: boolean; } /** * @public */ export declare namespace IScrollElementProps { const DEFAULTS: IScrollElementProps; } //# sourceMappingURL=IScrollElementProps.d.ts.map