UNPKG

@try-at-software/input-elements

Version:

A package providing different input elements that are extensible and easily configurable for your custom needs.

13 lines (12 loc) 870 B
import * as React from 'react'; import { IBaseInputElementProps } from '../IBaseInputElementProps'; import { IDynamicProps } from '../IDynamicProps'; import { IOperativeProps } from '../IOperativeProps'; import { ISingleValueInputElementProps } from '../ISingleValueInputElementProps'; import { IDropdownInputConfiguration } from './IDropdownInputConfiguration'; import { IDropdownInputProps } from './IDropdownInputProps'; import { IFluentUiDropdownInputProps } from './IFluentUiDropdownInputProps'; interface ISingleValueDropdownInputProps extends ISingleValueInputElementProps<string>, IDropdownInputConfiguration, IOperativeProps<IBaseInputElementProps>, IDynamicProps<IDropdownInputProps & IFluentUiDropdownInputProps> { } export declare const DropdownInput: React.MemoExoticComponent<(props: ISingleValueDropdownInputProps) => JSX.Element>; export {};