UNPKG

flowbite-svelte-blocks

Version:
19 lines (18 loc) 457 B
import type { Snippet } from 'svelte'; interface Props { children: Snippet; h3: Snippet; divClass?: string; h3Class?: string; } /** * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/) * ## Props * @props: children: any; * @props:h3: any; * @props:divClass: any; * @props:h3Class: any; */ declare const FaqItem: import("svelte").Component<Props, {}, "">; type FaqItem = ReturnType<typeof FaqItem>; export default FaqItem;