import { EventEmitter } from '../../stencil-public-runtime'; export declare class RuxSelect { /** * Disables the item */ disabled: boolean; /** * Sets the field as required */ required: boolean; /** * Sets the Label for the Select */ label?: string; /** * Id for the Select Input */ inputId?: string; /** * Id for the Label */ labelId?: string; /** * Sets the Select as Invalid for Custom Validation Usage */ invalid: boolean; /** * Sets the Name of the Input Element */ name?: string; /** * Event Emitted when the Value of the Select is Changed */ ruxSelectChanged: EventEmitter; render(): any; }