import { EventEmitter } from "../../stencil-public-runtime"; export declare class InputMaterial { 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; render(): any; }