@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
12 lines (11 loc) • 402 B
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import { CSSProperties, ReactNode } from "react";
interface TreeSelectOptionProps extends ViewProps {
className?: string;
style?: CSSProperties;
disabled?: boolean;
value?: any;
children?: ReactNode;
}
declare function TreeSelectOption(props: TreeSelectOptionProps): JSX.Element;
export default TreeSelectOption;