/** * @license * Copyright 2025-2026 Open Home Foundation * SPDX-License-Identifier: Apache-2.0 */ import "@material/web/button/text-button"; import "@material/web/select/outlined-select"; import "@material/web/select/select-option"; import { MatterClient } from "@matter-server/ws-client"; import { LitElement } from "lit"; /** * Server log-level form. Shared between the standalone log-level dialog and the * combined settings dialog. */ export declare class LogLevelSection extends LitElement { client?: MatterClient; protected _tick: number; private _consoleLevel; private _fileLevel; private _loading; private _applying; private _consoleSelect; private _fileSelect?; connectedCallback(): void; private _loadLogLevels; private _apply; protected render(): import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { "log-level-section": LogLevelSection; } } //# sourceMappingURL=log-level-section.d.ts.map