import React from 'react'; import { DataRowProps, IClickable, IDisableable, IHasCaption, IHasPlaceholder, Overwrite } from '@epam/uui-core'; import { PickerListBaseProps, PickerModalOptions } from '@epam/uui-components'; import { SizeMod } from '../types'; export interface PickerListModsOverride { } interface PickerListMods extends SizeMod { } export type PickerListProps = Overwrite & IHasPlaceholder & PickerModalOptions & PickerListBaseProps & { renderModalToggler?(props: IClickable & IHasCaption & IDisableable, selection: DataRowProps[]): React.ReactNode; noOptionsMessage?: React.ReactNode; }; export declare function PickerList(props: PickerListProps): React.JSX.Element; export {}; //# sourceMappingURL=PickerList.d.ts.map