import { Post } from '../types/news/Post'; /** * Decides whether a post is within its published window right now. * * A post counts as published only once its `published` date has passed and * before any `unpublished` date. A missing or future `published` date, or a * reached `unpublished` date, makes it unpublished. * @param {Pick} article - The post's publish window. * @returns {boolean} True when currently published. */ export declare const isArticlePublished: (article: Pick) => boolean; //# sourceMappingURL=isArticlePublished.d.ts.map