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