import { MultiSelectGroupProps, MultiSelectOptionProps, MultiSelectProps } from './MultiSelect'; interface MulitSelectNestedOption extends Omit { value: string | number; label: string; } interface MulitSelectNestedGroup extends Omit { children: Array; } type MultiSelectNestedProps = MultiSelectProps & { options: Array; }; declare const MultiSelectNested: ({ options, ...props }: MultiSelectNestedProps) => import("react/jsx-runtime").JSX.Element; export { MultiSelectNested }; export type { MultiSelectNestedProps, MulitSelectNestedOption, MulitSelectNestedGroup }; //# sourceMappingURL=MultiSelectNested.d.ts.map