/**
* SvBlockquote - a quotation block with an accent rule and an optional citation.
*
* The Analytical Engine weaves algebraic patterns.
*/
import type { Snippet } from 'svelte';
type Props = {
/** Attribution shown under the quote. */
cite?: string;
/** Accent colour of the rule. */
tone?: 'accent' | 'muted' | 'success' | 'warning' | 'error';
children?: Snippet;
};
declare const SvBlockquote: import("svelte").Component;
type SvBlockquote = ReturnType;
export default SvBlockquote;