import { ThemeableComponent } from "../../common"; import { DuetChoiceType, DuetTheme } from "../../common-types"; export interface DuetComboboxSelectSingleProps { checked: boolean; type: string; } export declare class DuetCheckmark implements ThemeableComponent { /** * Theme */ theme: DuetTheme; /** * Checked */ checked: boolean; /** * Checked */ presentationOnly: boolean; /** * Checked */ center: boolean; /** * Type */ type: DuetChoiceType; /** * Component lifecycle events. */ componentWillLoad(): void; render(): any; }