import { IValue } from "@sysdoc/utilities";
import { PrincipalType } from "@pnp/sp-commonjs";
export interface IPeopleServiceResult<T> extends IValue {
    email: string;
    displayName: string;
    identifier: any;
    payload: T;
}
export interface ISPPeopleExtra {
    accountName: string;
    userInfoId: number;
    department: string;
    title: string;
    isResolved: boolean;
    principalType: PrincipalType;
}
