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#L1879)
 * ## 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<BlockquoteProps, {}, "">;
type Blockquote = ReturnType<typeof Blockquote>;
export default Blockquote;
