import { CSSResultGroup, LitElement } from 'lit'; interface IOption { value: string; label: string; } export declare class Select extends LitElement { static get styles(): CSSResultGroup; options: Array; disabled: boolean; size: string; class: string; id: string; value: string; block: boolean; valid: boolean; invalid: boolean; private onChangeHandler; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'pf-select': Select; } } export {};