flowbite-svelte
Version:
Flowbite components for Svelte
15 lines (14 loc) • 499 B
TypeScript
import type { DescriptionListProps } from "../../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [DescriptionListProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1883)
* ## Props
* @prop children
* @prop tag
* @prop class: className
* @prop ...restProps
*/
declare const DescriptionList: import("svelte").Component<DescriptionListProps, {}, "">;
type DescriptionList = ReturnType<typeof DescriptionList>;
export default DescriptionList;