import type { Snippet } from 'svelte';
interface Props {
    icon: Snippet;
    h3?: Snippet;
    paragraph?: Snippet;
    divClass?: string;
    h3Class?: string;
    pClass?: string;
}
/**
 * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
 * ## Props
 * @props: icon: any;
 * @props:h3: any;
 * @props:paragraph: any;
 * @props:divClass: any;
 * @props:h3Class: any;
 * @props:pClass: any;
 */
declare const FeatureItem: import("svelte").Component<Props, {}, "">;
type FeatureItem = ReturnType<typeof FeatureItem>;
export default FeatureItem;
