import type { Snippet } from 'svelte';
import type { HTMLAttributes } from 'svelte/elements';
interface Props extends HTMLAttributes<HTMLDivElement> {
    children: Snippet;
    head?: Snippet;
    hero?: 'default' | 'visual';
    class?: string;
}
/**
 * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
 * ## Props
 * @props: children: any;
 * @props:head: any;
 * @props:hero: any = 'default';
 * @props:class: string;
 */
declare const HeroBody: import("svelte").Component<Props, {}, "">;
type HeroBody = ReturnType<typeof HeroBody>;
export default HeroBody;
