import * as React from 'react'; import { IPersonaProps } from '@fluentui/react/lib/Persona'; export interface IPeopleSelectedItemsListExampleState { currentSelectedItems: IPersonaProps[]; } export declare class SelectedPeopleListWithGroupExpandExample extends React.Component<{}, IPeopleSelectedItemsListExampleState> { constructor(props: {}); render(): JSX.Element; /** * Build a custom selected item capable of being edited with a dropdown and * capable of eidting */ private SelectedItem; private _renderExtendedPicker; private _onAddItemButtonClicked; private _onItemsRemoved; private _getExpandedGroupItems; private _canExpandItem; }