import { default as Checkbox } from './checkbox.vue'; export interface CheckboxProps { modelValue: boolean; label?: string; srLabel?: string; ariaLabel?: string; disabled?: boolean; indeterminate?: boolean; dataTest?: string; } export type CheckboxInstance = InstanceType;