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