import { default as React } from 'react'; export interface BlockquoteProps { /** Quote content */ children: React.ReactNode; /** Citation/author */ cite?: string; /** Variant style */ variant?: 'default' | 'bordered' | 'accent'; /** Size variant */ size?: 'sm' | 'md' | 'lg'; /** Additional className */ className?: string; } /** * Blockquote Component * * Displays quoted text with optional citation and various styling options. * Uses semantic HTML for proper document structure. * * @example * ```tsx *
* This is a great quote about something important. *
* ``` * * @example * ```tsx *
* Innovation distinguishes between a leader and a follower. *
* ``` */ export declare const Blockquote: React.FC; //# sourceMappingURL=blockquote.d.ts.map