import { FunctionalComponent } from '../../stencil-public-runtime';
import { Label } from '../dynamic-label/label.types';
interface CheckboxTemplateProps {
  disabled?: boolean;
  id: string;
  checked?: boolean;
  readonly?: boolean;
  indeterminate?: boolean;
  required?: boolean;
  invalid?: boolean;
  onChange?: (event: Event) => void;
  label?: string;
  helperText?: string;
  helperTextId?: string;
  readonlyLabels?: Array<Label<boolean>>;
}
export declare const CheckboxTemplate: FunctionalComponent<CheckboxTemplateProps>;
export {};
//# sourceMappingURL=checkbox.template.d.ts.map