import type { Snippet } from 'svelte';
interface Props {
    children: Snippet;
    title?: string;
    titleClass?: string;
    h2Class?: string;
    class?: string;
}
/**
 * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
 * ## Props
 * @props: children: any;
 * @props:title: any;
 * @props:titleClass: any;
 * @props:h2Class: any;
 * @props:class: string;
 */
declare const Comment: import("svelte").Component<Props, {}, "">;
type Comment = ReturnType<typeof Comment>;
export default Comment;
