import { CheckBoxStyle, CheckValue, ICheckBox, Vec4 } from "ave-ui"; import { IComponentProps, IComponentStyle } from "./common"; export interface ICheckBoxComponentProps extends IComponentProps { text: string; value?: CheckValue; style?: ICheckBoxStyle; triple?: boolean; onCheck?: Parameters[0]; onChecking?: Parameters[0]; } export interface ICheckBoxStyle extends IComponentStyle { color?: Vec4; visualStyle?: CheckBoxStyle; } export declare const CheckBox: import("./common").ReactAveTag;