import { ID } from '../../commonStateTypes/common'; import { RootState } from '../../rootStateTypes'; import { PeopleLocalDataView, PeopleSelectorView } from './peopleSelectorTypes'; import { PeopleState, PersonUpdateType } from './peopleState'; export declare const getPeople: (state: RootState) => PeopleSelectorView; export declare const getPeopleLocalData: (state: RootState) => PeopleLocalDataView; export declare function getUpdateStatusForUser(peopleState: PeopleState, userId: ID): PersonUpdateType | undefined;