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