export declare class HTMLDwebNavigationBarElement extends HTMLElement {
static readonly tagName = "dweb-navigation-bar";
readonly plugin: import("./navigation-bar.plugin.js").NavigationBarPlugin;
get setColor(): (color: string) => Promise;
get getColor(): () => Promise;
get setStyle(): (style: import("./navigation-bar.type.js").NAVIGATION_BAR_STYLE) => Promise;
get getStyle(): () => Promise;
get setVisible(): (visible: boolean) => Promise;
get getVisible(): () => Promise;
get getState(): () => Promise<{
color: import("../../index.js").$WindowStyleColor;
style: import("./navigation-bar.type.js").NAVIGATION_BAR_STYLE;
overlay: boolean;
visible: true;
insets: import("../../../util/insets.js").DOMInsets;
}>;
get setOverlay(): (overlay: boolean) => Promise;
get getOverlay(): () => Promise;
}
declare global {
interface HTMLElementTagNameMap {
[HTMLDwebNavigationBarElement.tagName]: HTMLDwebNavigationBarElement;
}
}
//# sourceMappingURL=navigation-bar.wc.d.ts.map