export declare class Nav {
    /**
     * Whether the nav is active or not.
     */
    active: boolean;
    /**
     * Disable the nav regardless of active state
     */
    disabled: boolean;
    protected render(): any;
}
