import { IListPageTemplatesGateway } from "./IListPageTemplatesGateway"; import { IListPageTemplatesRepository } from "./IListPageTemplatesRepository"; import { PbPageTemplateWithContent } from "../../../types"; import { ListCache } from "../../ListCache"; export declare class ListPageTemplatesRepository implements IListPageTemplatesRepository { private loading; private loader; private gateway; private cache; constructor(gateway: IListPageTemplatesGateway, cache: ListCache); getLoading(): boolean; getPageTemplates(): PbPageTemplateWithContent[]; execute(): Promise; }