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