import { Post, RemotePost } from "./support/types";
import commander from "commander";
declare const register: (program: commander.Command) => void;
export default register;
export declare function getPosts(siteId: string, tag: string, downloadImages?: string, debug?: boolean, cont?: boolean): Promise<Post[]>;
export declare function mapPost(index: number, item: RemotePost, downloadImages?: string, cont?: boolean): Promise<Post>;
export declare function writeBlogPost(blogPath: string, post: Post, alias?: string): string;
export declare function writeBlogIndex(blogDir: string, entries: Array<Post>): string;
