import React from 'react'; import { IDropdownTreeDynamic } from '../../dropdown/treeDynamic'; import { InputProps } from '../types'; import { IDropdownOption, IDropdownTreeOption } from '../../dropdown'; import { InputContainerProps } from '../base/InputContainer'; export interface IInputTree extends InputProps, Pick, Pick { /** Option to render your own content */ renderValue?: (option?: IDropdownOption) => React.ReactNode; renderItemTrailing?: (option: IDropdownTreeOption, activeOption?: IDropdownTreeOption) => React.ReactNode | void; placeholder?: string; } export declare const InputTree: React.FC;