import { Color, Fill } from "../../model"; import { Button } from "./Button"; export declare class SmoothlyButton { color?: Color; expand?: "block" | "full"; fill?: Fill; tooltip?: string; disabled: boolean; type: Button.Properties["type"]; size: "small" | "large" | "icon" | "flexible"; shape?: "rounded"; link?: string; render(): any; }