/**
 * A customizable side navigation component for organizing primary navigation and content areas in an application.
 */
export declare class ModusWcSideNavigation {
    private inheritedAttributes;
    private minWidth;
    private navRef?;
    /** Reference to the host element */
    el: HTMLElement;
    /** Whether the side navigation should collapse when clicking outside of it. */
    collapseOnClickOutside: boolean;
    /** Custom CSS class to apply to the inner div. */
    customClass?: string;
    /** Whether the side navigation is expanded. */
    expanded: boolean;
    /** Maximum width of the side navigation panel in an expanded state. */
    maxWidth: string;
    componentWillLoad(): void;
    connectedCallback(): void;
    disconnectedCallback(): void;
    private getClasses;
    private handleClickOutside;
    render(): any;
}
