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