/**
 * IFPSSubsSearchCleanItem is used in IFPSWebsWithLogo which is the type of object to be return with typical link info like Title, Desc, Path, Logo
 *  - Also includes some commonly used properties which are duplicates but standard for some web parts like PivotTiles and Hub Connections
 */
export interface IFPSSubsSearchCleanItem {
    GroupId: string;
    Title: string;
    SiteId: string;
    WebId: string;
    DepartmentId: string;
    Path: string;
    Description: string;
    PictureThumbnailURL: string;
    SiteLogo: string;
    WebTemplate: string;
    ViewsLifeTime: number;
    ViewsRecent: number;
    contentclass: string;
    ParentLink: undefined | string;
    ServerRelativeUrl: string;
    imageUrl: string;
    title: string;
    href: string;
    description: string;
    sourceType: string;
}
//# sourceMappingURL=IFPSSubsSearchCleanItem.d.ts.map