import Vue from 'vue';
declare class ToggleButton extends Vue {
value?: boolean;
onIcon?: string;
offIcon?: string;
onLabel?: string;
offLabel?: string;
iconPos?: string;
$emit(eventName: string, event: Event): this;
}
export default ToggleButton;