/// import { TextStyle } from 'react-native'; import { CheckboxCategoryStatus, CheckboxIdentifier } from '../../types'; import { CheckboxBaseProps, CheckboxIndeterminateProps } from './Checkbox'; export interface CheckboxNestedProps extends CheckboxBaseProps, CheckboxIndeterminateProps { title?: string; titleStyle?: TextStyle; checkboxIds: CheckboxIdentifier[]; status?: CheckboxCategoryStatus; } export default function CheckboxNested({ status, style, title, titleStyle, selectedCheckboxStyle, selectedCheckboxIcon, selectedCheckboxIconContainerStyle, selectedCheckboxComponentContainerStyle, selectedCheckboxTitleStyle, indeterminateCheckboxIcon, indeterminateCheckboxIconContainerStyle, checkboxIconContainerStyle, checkboxComponentContainerStyle, ...props }: CheckboxNestedProps): JSX.Element;