import { SvelteComponent } from "svelte"; declare const __propDef: { props: { colourBackground?: any; colourBackgroundHover?: any; colourBackgroundFocus?: any; colourText?: any; colourTextHover?: any; colourTextFocus?: any; colourLabel?: any; colourLabelValued?: any; shadow?: any; shadowHover?: any; shadowFocus?: any; name: string; label: string; id?: string | undefined; width?: any; widthTrack?: any; widthKnob?: any; height?: any; heightTrack?: any; heightKnob?: any; roundness?: any; checked?: boolean; tabindex?: number; }; events: { [evt: string]: CustomEvent; }; slots: { left: {}; 'label-left': {}; 'label-right': {}; right: {}; }; }; export type ToggleProps = typeof __propDef.props; export type ToggleEvents = typeof __propDef.events; export type ToggleSlots = typeof __propDef.slots; export default class Toggle extends SvelteComponent { } export {};