import { GroupBase } from 'react-select'; export type OptionSelectTree = { value: string | number | null; label?: string; children?: OptionSelectTree[]; }; export interface SelectTreeProps = GroupBase> { maxDisplayDepth?: number; defaultValue?: { value?: string | number | null; }; options: OptionSelectTree[]; onChange?: (value: Record) => void; name?: string; menuPortalTarget?: HTMLElement | null; inputId?: string; error?: string; ariaErrorMessage?: string; isDisabled?: boolean; disabled?: boolean; } export declare const SelectTree: ({ options: defaultOptions, maxDisplayDepth, defaultValue, ...props }: SelectTreeProps) => import("react/jsx-runtime").JSX.Element;