import { ComponentWillLoad, EventEmitter, VNode } from "../../../stencil-public-runtime"; import { Color, Fill } from "../../../model"; import { Editable } from "../Editable"; export declare class SmoothlyInputEdit implements ComponentWillLoad { private parent?; color?: Color; expand?: "block" | "full"; fill?: Fill; disabled: boolean; display: boolean; shape?: "rounded"; type: "form" | "input"; size: "flexible" | "small" | "large" | "icon"; tooltip: string; smoothlyInputLoad: EventEmitter<(parent: Editable) => void>; componentWillLoad(): void; clickHandler(): void; render(): VNode | VNode[]; }