import { _GraphInstance, _GraphCollection } from "../graphqueryable.js"; import { IUpdateable, IAddable, IDeleteable, IGetById } from "../decorators.js"; import { ProfileCardProperty as IProfileCardPropertyType, PeopleAdminSettings as IPeopleAdminSettingsType } from "@microsoft/microsoft-graph-types"; export declare class _PeopleAdmin extends _GraphInstance { get profileCardProperties(): IProfileCardProperties; get pronounSettings(): IPronounSettings; } export interface IPeopleAdmin extends _PeopleAdmin { } export declare const PeopleAdmin: import("../graphqueryable.js").IGraphInvokableFactory; /** * People Pronoun Settings */ export declare class _PronounSettings extends _GraphInstance { } export interface IPronounSettings extends _PronounSettings, IUpdateable { } export declare const PronounSettings: import("../graphqueryable.js").IGraphInvokableFactory; /** * Profilecard Property */ export declare class _ProfileCardProperty extends _GraphInstance { } export interface IProfileCardProperty extends _ProfileCardProperty, IDeleteable, IUpdateable { } export declare const ProfileCardProperty: import("../graphqueryable.js").IGraphInvokableFactory; /** * Profilecard properties */ export declare class _ProfileCardProperties extends _GraphCollection { } export interface IProfileCardProperties extends _ProfileCardProperties, IAddable, IGetById { } export declare const ProfileCardProperties: import("../graphqueryable.js").IGraphInvokableFactory; export interface IPronounSettingsType { isEnabledInOrganization: boolean; } //# sourceMappingURL=people.d.ts.map