import * as st from "simple-runtypes";
export declare const AddCommentRequestDefinition: {
    commentBody: st.Runtype<string>;
    parentComment: st.OptionalRuntype<{
        commentId: string;
        authorUid: string;
    }>;
    authorDisplayName: st.Runtype<string>;
    postId: st.Runtype<string>;
};
export declare const AddCommentRequestSloppy: st.Runtype<{
    commentBody: string;
    authorDisplayName: string;
    postId: string;
    parentComment?: {
        commentId: string;
        authorUid: string;
    } | undefined;
}>;
export declare const AddCommentResponse: {
    commentId: st.Runtype<string>;
};
