import Component from '@glimmer/component'; import ThemeService from 'ember-material-tailwind/services/theme'; /** A a Switch child component for EmtSwitch component @class EmtSwitch.switch @public */ interface SwitchArgs { disabled: boolean; color: string; value: any; } export default class Switch extends Component { theme: ThemeService; private _builder; private _utils; constructor(owner: unknown, args: SwitchArgs); /** Provides the tailwind classes depending on the button type @field classes @type string */ get classes(): string; get thumbClasses(): string; onPress(event: MouseEvent | TouchEvent): void; } export {};