import { IHubSiteWebData } from "./types.js"; declare module "../webs/types" { interface _Web { hubSiteData(forceRefresh?: boolean): Promise>; syncHubSiteTheme(): Promise; } interface IWeb { /** * Gets hub site data for the current web. * * @param forceRefresh Default value is false. When false, the data is returned from the server's cache. * When true, the cache is refreshed with the latest updates and then returned. * Use this if you just made changes and need to see those changes right away. */ hubSiteData(forceRefresh?: boolean): Promise>; /** * Applies theme updates from the parent hub site collection. */ syncHubSiteTheme(): Promise; } } //# sourceMappingURL=web.d.ts.map