import type { Quote } from '../types/common.js'; interface Props { /** Quote object (legacy) or quote text string */ quote: Quote | string; /** Attribution (when quote is a string) */ attribution?: string; /** Author name (alternative to attribution) */ author?: string; /** Source reference */ source?: string; } declare const QuoteBlock: import("svelte").Component; type QuoteBlock = ReturnType; export default QuoteBlock;