import { LANGUAGE_TYPES } from "../../managers/language/constants";
export declare class SlCollectionGrouped {
    el: HTMLSlCollectionGroupedElement;
    private timeout;
    private componentDidLoadComplete;
    /** (optional) max items displayed. All by default if it's possible with width. */
    maxItems: number;
    /** Internal language coming from lang html attribute */
    language: LANGUAGE_TYPES;
    /** list of hidden children */
    hiddenChildren: HTMLElement[];
    maxItemsChanged(): void;
    constructor();
    componentDidLoad(): void;
    disconnectedCallback(): void;
    private startCheckChildrenFit;
    private checkCollectionFit;
    render(): any;
}
