import { PropertyValueMap } from "lit"; import { OptionElement } from "../../base/option-element"; import SgdsCheckbox from "../Checkbox/sgds-checkbox"; import SgdsIcon from "../Icon/sgds-icon"; /** * @summary ComboBoxOption is the option of the Combobox * * @slot default - The label of the option */ export declare class SgdsComboBoxOption extends OptionElement { /** @internal */ static dependencies: { "sgds-icon": typeof SgdsIcon; "sgds-checkbox": typeof SgdsCheckbox; }; /** * @internal If true, this item is rendered as a checkbox item. * This property is controlled by its combo box parent */ checkbox: boolean; connectedCallback(): void; firstUpdated(changedProperties: PropertyValueMap): void; protected _renderItemContent: () => import("lit").TemplateResult<1>; } export default SgdsComboBoxOption;