import { BaseComponentContext } from '@microsoft/sp-component-base'; export interface ISite { /** * ID of the site */ id?: string; /** * Title */ title?: string; /** * Base URL */ url?: string; /** * ID of the web */ webId?: string; /** * ID of the hub site */ hubSiteId?: string; } export interface ISiteWebInfo { title: string; webId: string; siteId: string; } export declare const getAllSites: (ctx: BaseComponentContext, includeWebs: boolean, currentSiteCollectionOnly: boolean, trimDuplicates: boolean, additionaQuery?: string | undefined) => Promise; export declare const getHubSites: (ctx: BaseComponentContext) => Promise; export declare const getSiteWebInfo: (ctx: BaseComponentContext, webUrl: string) => Promise; export declare const getAssociatedSites: (ctx: BaseComponentContext, trimDuplicates: boolean, hubSiteId?: string) => Promise; //# sourceMappingURL=SPSitesService.d.ts.map