import * as React from 'react'; import { DataRowProps, DataSourceState, Icon, Overwrite } from '@epam/uui-core'; export interface PickerItemModsOverride { } interface PickerItemMods { /** * Defines component size. */ size?: '24' | '30' | '36' | '42' | '48'; } export interface PickerItemProps extends Overwrite, DataRowProps { /** Path to the user avatar. * If omitted, no avatar will be rendered. * * */ avatarUrl?: string; /** Icon to render in picker row. * If omitted, nothing will be rendered. * */ icon?: Icon; /** Row title */ title?: string; /** Row subtitle. Will be rendered as a second line, below the title */ subtitle?: string; /** DataSourceState of the Picker. * Usually provided via renderItem callback params * */ dataSourceState?: DataSourceState; /** * Enables highlighting of the items' text with search-matching results. * @default true * */ highlightSearchMatches?: boolean; } export declare function PickerItem(props: PickerItemProps): React.JSX.Element; export {}; //# sourceMappingURL=PickerItem.d.ts.map