import type { Snippet } from 'svelte';
import type { Comment } from '../types';
import CommentItem from './CommentItem.svelte';
interface Props {
    menuSlot?: Snippet;
    replySlot?: Snippet;
    replyButton?: boolean;
    comment: Comment;
    articleClass?: string;
    footerClass?: string;
    pClass?: string;
}
/**
 * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
 * ## Props
 * @props: menuSlot: any;
 * @props:replySlot: any;
 * @props:replyButton: any;
 * @props:comment: any;
 * @props:articleClass: any;
 * @props:footerClass: any;
 * @props:pClass: any;
 */
declare const CommentItem: import("svelte").Component<Props, {}, "">;
type CommentItem = ReturnType<typeof CommentItem>;
export default CommentItem;
