import React, { ReactNode } from "react"; import { TextStyle } from "react-native"; import { ThemeName } from "../constants/Colors"; interface CheckboxProps { label?: string; isSelected?: boolean; onToggle?: (isSelected: boolean) => void; size?: number; bounceIntensity?: number; themeScheme?: "light" | "dark"; variant?: "default" | "secondary" | ThemeName; innerComponent?: ReactNode; disabled?: boolean; radius?: number; labelTextStyle?: TextStyle; } declare const Checkbox: React.FC; export default Checkbox; //# sourceMappingURL=CheckBox.d.ts.map