import * as lit_html from 'lit-html';
import { LitElement } from 'lit';
/**
* @since 1.0.0
* @status stable
*
* @tagname kemet-option
* @summary An option in a select.
*
* @prop {string} label - The label of the option
* @prop {string} value - The value of the options
* @prop {boolean} disabled - Determines whether to disable the option
* @prop {boolean} selected - Selects the option if true
*
*/
declare class KemetOption extends LitElement {
label: string;
value: string;
disabled: boolean;
selected: boolean;
render(): lit_html.TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'kemet-option': KemetOption;
}
}
export { KemetOption as default };