import React, { type ReactNode } from 'react'; import { type StyleProp, type TextStyle, type ViewStyle } from 'react-native'; interface CheckBoxModel { children?: CheckBoxModel[]; value: string; label: string; icon?: ReactNode; } interface Props { item: CheckBoxModel; onSelect: (val: string) => void; selected: string[]; expandedIcon?: ReactNode; unExpandedIcon?: ReactNode; checkedColor?: string; unCheckedColor?: string; textStyle?: StyleProp; labelColor?: string; styles?: StyleProp; } declare const CheckboxItem: (props: Props) => React.JSX.Element; export default CheckboxItem; //# sourceMappingURL=CheckboxItem.d.ts.map