import { ComponentInterface } from "../../../stencil-public-runtime"; export declare class BcmInputCustom implements ComponentInterface { el: HTMLElement; _id: string; name: string; value: string; type: string; label: string; required: boolean; disabled: boolean; readonly: boolean; placeholder: string; fullwidth: boolean; hasFocus: boolean; handleFocus: () => void; handleBlur: () => void; handleChange: (e: Event) => void; handleInput: (e: Event) => void; render(): any; }