/**
* A dictionary/map of all page routes. The key of this dictionary is the page path for a page.
* @typedef {Object.<string, AgilityFetch.Types.SitemapFlatItem>} SitemapFlat - The valid page routes.
* @memberof AgilityFetch.Types
*/
import { SitemapFlatItem } from "./SitemapFlatItem";
export interface SitemapFlat {
    [key: string]: SitemapFlatItem;
}
