import { LitElement } from "lit";
/**
 * The settings item using inside of the editor.
 *
 * @slot - The setting.
 */
export declare class SettingItem extends LitElement {
    static styles: import("lit").CSSResult[];
    /** The name of the setting. */
    name: string;
    /** The description of the setting. */
    description: string;
    render(): import("lit-html").TemplateResult<1>;
}
declare global {
    interface HTMLElementTagNameMap {
        'setting-item': SettingItem;
    }
}
//# sourceMappingURL=setting-item.d.ts.map