import '../../../stencil.core';
export declare class NavToggle {
/**
* Whether the nav is active or not.
*/
active: boolean;
/**
* Disable the nav regardless of active state
*/
disabled: boolean;
hostData(): {
class: {
'nav-toggle': boolean;
};
};
render(): JSX.Element;
}