import type { HeadingProps } from "../../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [HeadingProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2056) * ## Props * @prop children * @prop tag = "h1" * @prop class: className * @prop ...restProps */ declare const Heading: import("svelte").Component; type Heading = ReturnType; export default Heading;