/**
 *  This is the return interface for the value array when fetching this api
 *  https://learn.microsoft.com/en-us/sharepoint/dev/features/hub-site/rest-hubsites-method
 *    https://contoso.sharepoint.com/_api/HubSites
 */
export interface IFPSHubSitesApi {
    "@odata.context": string;
    value: IFPSHubSiteApi[];
}
export interface IFPSHubSiteApi {
    "@odata.type": string;
    "@odata.id": string;
    "@odata.etag": string;
    "@odata.editLink": string;
    Description: string | undefined;
    ID: string;
    LogoUrl: string;
    SiteId: string;
    SiteUrl: string;
    Targets: any[] | undefined;
    TenantInstanceId: string;
    Title: string;
}
//# sourceMappingURL=IFPSHubSitesApi.d.ts.map