* Scrollable content goes here
*
* ```
*
* @tag m3e-scroll-container
*
* @slot - Renders the scrollable content.
*
* @attr dividers - The dividers used to separate scrollable content.
* @attr thin - Whether to present thin scrollbars.
*
* @cssprop --m3e-divider-thickness - Thickness of the divider lines above and below content.
* @cssprop --m3e-divider-color - Color of the divider lines when visible.
* @cssprop --m3e-focus-ring-color - Color of the focus ring outline.
* @cssprop --m3e-focus-ring-thickness - Thickness of the focus ring outline.
* @cssprop --m3e-focus-ring-factor - Animation factor for focus ring thickness.
* @cssprop --m3e-focus-ring-duration - Duration of the focus ring animation.
*/
export declare class M3eScrollContainerElement extends LitElement {
#private;
/** The styles of the element. */
static styles: CSSResultGroup;
/**
* The dividers used to separate scrollable content.
* @default "above-below"
*/
dividers: ScrollDividers;
/**
* Whether to present thin scrollbars.
* @default false
*/
thin: boolean;
/** @inheritdoc */
disconnectedCallback(): void;
/** @inheritdoc */
protected update(changedProperties: PropertyValues