BlogPostStaticMethodsMap: {
    getMostRecentBlogPosts(
        teamID: string,
        options?: BlogPostFeedOptions,
    ): Promise<{ blogPosts: BlogPostInstance[]; offsetDate?: Date }>;
    getMostRecentBlogPostsBySlug(
        teamSlugName: string,
        options?: BlogPostFeedOptions,
    ): Promise<{ blogPosts: BlogPostInstance[]; offsetDate?: Date }>;
    getWithCreator(id: string): Promise<BlogPostInstance>;
}

Type declaration