import { Content } from "ts-confluence-client/dist/resources/types"; import { IStaleCheckDetails } from "../jobs/staleCheckJob"; /** * Using the updater config given, this will iterate through all the pages in the given parent page and determine * who the owner is and, if the doc has not been updated in the configured # of days, it will be added to a list * of un-updated docs. We can optionally send a notification to each owner for each page or send a full list * to the curator (admin) for that parent page. * @param options */ export declare const checkPagesForOutOfDateContent: (options: IStaleCheckDetails) => Promise;