export interface Reply {
    subreddit: string;
    postID: string;
    id: string;
    author: string;
    created: Date;
    body: string;
    isPostAuthor: boolean;
    likes: number;
    dislikes: number;
    archived: boolean;
}
export declare function reply(subreddit: string, postID: string, replyID: string): Promise<Reply>;
