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