import { EventEmitter } from "../../stencil-public-runtime"; import { Color, Fill } from "../../model"; export declare class SmoothlyToggleSwitch { checkmark: boolean; selected: boolean; disabled: boolean; size: "tiny" | "small" | "default" | "large"; color: Color; fill: Fill; smoothlyToggleSwitchChange: EventEmitter; handleClick(): void; render(): any; }