import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
/** Renders an HTML `<blockquote>` element. Accepts optional attributes and child content. */
declare const Blockquote: import("svelte").Component<Props, {}, "">;
type Blockquote = ReturnType<typeof Blockquote>;
export default Blockquote;
