import type { Snippet } from 'svelte';
interface Item {
    customer?: string;
    title?: string;
    description?: string;
    href?: string;
    linkTitle?: string;
}
interface Props {
    children?: Snippet;
    item: Item;
    divClass?: string;
    customerClass?: string;
    titleClass?: string;
    descriptionClass?: string;
    linkClass?: string;
}
/**
 * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
 * ## Props
 * @props: children: any;
 * @props:item: any;
 * @props:divClass: any;
 * @props:customerClass: any;
 * @props:titleClass: any;
 * @props:descriptionClass: any;
 * @props:linkClass: any;
 */
declare const PortfolioItem: import("svelte").Component<Props, {}, "">;
type PortfolioItem = ReturnType<typeof PortfolioItem>;
export default PortfolioItem;
