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