import type { BlockquoteProps } from "../../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [BlockquoteProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L2040) * ## Props * @prop children * @prop class: className * @prop border * @prop italic = true * @prop bg * @prop alignment = "left" * @prop size = "lg" * @prop ...restProps */ declare const Blockquote: import("svelte").Component; type Blockquote = ReturnType; export default Blockquote;