import { EventEmitter } from "../../stencil-public-runtime"; import { Color, Fill } from "../../model"; import { Editable } from "../input/Editable"; export declare class SmoothlySubmit { color?: Color; expand?: "block" | "full"; fill?: Fill; disabled: boolean; type: "link" | "button"; size: "flexible" | "small" | "large" | "icon"; shape?: "rounded"; prevent: boolean; private parent?; smoothlyInputLoad: EventEmitter<(parent: Editable) => void>; componentWillLoad(): Promise; clickHandler(): void; render(): any; }