import { Content } from "ts-confluence-client/dist/resources/types"; import { IStaleCheckDetails } from "../jobs/staleCheckJob"; /** * Given a list of out of date docs, this will group them by owner then send a single email per owner containing * all the docs that are owned by that person and are out of date. * @param sourcePage * @param outOfDateContent * @param options */ export declare function sendOwnerEmails(options: IStaleCheckDetails, sourcePage: Content, outOfDateContent: Content[]): Promise; /** * Sends an email to the admin for the given set of out of date content. * @param options * @param sourcePage * @param outOfDateContent */ export declare function sendAdminEmail(options: IStaleCheckDetails, sourcePage: Content, outOfDateContent: Content[]): Promise;