import { VuiComponent } from "../core/vui.js";
import { SelectOptionProps } from "./select.types.js";
import "../index.js";
//#region src/select/selectOption.d.ts
/**
 * Displays a select option as a list item. By default, closes popover when option is selected.
 * In multi-select mode, displays a checkbox and doesn't close popover.
 * 'onChange' is triggered with a modified click event, which adds 'value' and 'name' properties.
 */
declare const SelectOption: VuiComponent<"li", SelectOptionProps>;
//#endregion
export { SelectOption, SelectOption as default };

//# sourceMappingURL=selectOption.d.ts.map