import React from 'react'; export interface PeopleTabProps { onChange?: (items: any[]) => void; selected?: any[]; assigned?: any[]; options?: any[]; labelKey?: string; } export declare const PeopleTab: React.FC;