import { OnInit, QueryList } from '@angular/core'; import { AtSupport } from '../directives/support.directive'; export declare type CheckTheme = 'primary' | 'secondary' | 'tertiary' | 'magenta' | 'orange' | 'purple' | 'red' | 'teal' | 'yellow' | 'gray'; export declare class CheckboxComponent implements OnInit { _supportChildren: QueryList; theme: CheckTheme; _theme: CheckTheme; constructor(); ngOnInit(): void; }