import React from 'react'; import { DataRowProps } from '@epam/uui-core'; export interface PickerListItemProps extends DataRowProps { /** A pure function that gets entity name from entity object. Default: (item) => item.name. */ getName(item: TItem): string; } export declare function PickerListRow(props: PickerListItemProps): React.JSX.Element; //# sourceMappingURL=PickerListRow.d.ts.map