@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
21 lines (20 loc) • 452 B
TypeScript
import { VNode } from "../../stencil-public-runtime";
/**
* @slot - A slot for adding `calcite-option`s.
*/
export declare class OptionGroup {
/**
* When true, it prevents selection from any of its associated options.
*/
disabled: boolean;
/**
* The group label. This property is required.
*/
label: string;
protected handlePropChange(): void;
/**
* @internal
*/
private calciteOptionGroupChange;
render(): VNode;
}