import * as React from 'react'; import { IStyleFunctionOrObject } from 'office-ui-fabric-react/lib/Utilities'; import { IPersonaProps } from 'office-ui-fabric-react/lib/Persona'; import { ISelectedItemProps } from '../../SelectedItemsList.types'; import { ISelectedPersonaStyles, ISelectedPersonaStyleProps } from './SelectedPersona.types'; import { ITheme } from 'office-ui-fabric-react/lib/Styling'; declare type ISelectedPersonaProps = ISelectedItemProps & { isValid?: (item: TPersona) => boolean; canExpand?: (item: TPersona) => boolean; getExpandedItems?: (item: TPersona) => Promise; /** * Call to provide customized styling that will layer on top of the variant rules. */ styles?: IStyleFunctionOrObject; /** * Theme for the component. */ theme?: ITheme; }; export declare const SelectedPersona: React.MemoExoticComponent<((props: ISelectedPersonaProps) => JSX.Element)>; export {};