import * as React from 'react'; import { Icon } from '@epam/uui-core'; type TIconParams = { id: string; name: string; icon: Icon; }; type IconPickerValueExtended = { id: string; name?: string; icon?: Icon; } | undefined; interface IconPickerInnerProps { /** icon id */ value: string; onValueChange: (newValue: IconPickerValueExtended) => void; icons: TIconParams[]; enableInfo?: boolean; } export declare function IconPickerWithInfo(props: IconPickerInnerProps): React.JSX.Element; export {}; //# sourceMappingURL=IconPicker.d.ts.map