import React from 'react'; import { CheckboxGroup } from '../checkbox-group/CheckboxGroup'; import { Tree } from '../tree/Tree'; type CheckboxTreeItemProps = Omit & React.ComponentProps, 'required' | 'asChild'>; export declare const CheckboxTreeItem: ({ value, title, onCheckedChange, children, disabled, ...rest }: CheckboxTreeItemProps) => React.JSX.Element; export {};