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