/**
* Defines a page's visibility.
* @typedef SitemapVisibility
* @memberof AgilityFetch.Types
* @property {boolean} menu - If set to true, this page should be hidden from menus.
* @property {boolean} sitemap - If set to true, this page should be hidden from the sitemap and not accessible by robots.
*/
export interface SitemapVisibility {
    menu: boolean;
    sitemap: boolean;
}
