export interface WOICheckBoxProps { size: number; borderRadius?: number; borderWidth?: number; activeBorderColor?: string; inActiveBorderColor?: string; activeBackgroundColor?: string; inActiveBackgroundColor?: string; icon?: string; iconSize?: number; isChecked: boolean; clickFunction?: () => void; } declare const WOICheckBox: (props: WOICheckBoxProps) => import("react/jsx-runtime").JSX.Element; export default WOICheckBox;