rsuite
Version:
A suite of react components
15 lines (14 loc) • 447 B
TypeScript
import React from 'react';
import { PickerLocale } from '../../locales';
export interface SelectedElementProps {
selectedItems: any[];
valueKey: string;
labelKey: string;
countable: boolean;
cascade?: boolean;
locale?: Partial<PickerLocale>;
childrenKey?: string;
prefix: (name: string) => string;
}
declare const SelectedElement: (props: SelectedElementProps) => React.JSX.Element;
export default SelectedElement;