import { EventEmitter } from "../../stencil-public-runtime"; export declare class InputRoom { ionInput: EventEmitter; ionChange: EventEmitter; label: string; labelPosition: "stacked" | "fixed" | "floating"; name: string; list: string; placeholder: string; options?: { label: string; value: any; }[]; multiple: boolean; value: any; required: boolean; render(): any; }