import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
}
/** Renders a markdown paragraph as a `<p>` element. */
declare const Paragraph: import("svelte").Component<Props, {}, "">;
type Paragraph = ReturnType<typeof Paragraph>;
export default Paragraph;
