import type { VNode } from 'vue'; export interface CheckboxProps { children?: string; textStyle?: any; boxStyle?: any; iconStyle?: any; checked?: boolean; indeterminate?: boolean; interactive?: boolean; disabled?: boolean; disableCursor?: any; spaceBetweenTextAndIcon?: number; visible?: boolean; onChange?: (checked: boolean) => void; } declare function CheckBox(props: CheckboxProps): VNode; declare namespace CheckBox { var symbol: string; } export default CheckBox;