#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen(
extends = "HtmlElement",
extends = "Element",
extends = "Node",
extends = "EventTarget",
extends = "::js_sys::Object",
js_name = "HTMLOptGroupElement",
typescript_type = "HTMLOptGroupElement"
)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `HtmlOptGroupElement` class."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
pub type HtmlOptGroupElement;
#[wasm_bindgen(method, getter, js_class = "HTMLOptGroupElement", js_name = "disabled")]
#[doc = "Getter for the `disabled` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement/disabled)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
pub fn disabled(this: &HtmlOptGroupElement) -> bool;
#[wasm_bindgen(method, setter, js_class = "HTMLOptGroupElement", js_name = "disabled")]
#[doc = "Setter for the `disabled` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement/disabled)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
pub fn set_disabled(this: &HtmlOptGroupElement, value: bool);
#[wasm_bindgen(method, getter, js_class = "HTMLOptGroupElement", js_name = "label")]
#[doc = "Getter for the `label` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement/label)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
pub fn label(this: &HtmlOptGroupElement) -> ::alloc::string::String;
#[wasm_bindgen(method, setter, js_class = "HTMLOptGroupElement", js_name = "label")]
#[doc = "Setter for the `label` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement/label)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `HtmlOptGroupElement`*"]
pub fn set_label(this: &HtmlOptGroupElement, value: &str);
}