export interface MarkdownProps {
    content: string;
    id?: string;
    class?: string;
    codeTheme?: string;
    /** Optional `::part` name(s) to expose on the rendered root. Lets callers
     *  (e.g. the message bubble) surface a styleable part through the shadow. */
    part?: string;
}
declare function Markdown(props: MarkdownProps): import("solid-js").JSX.Element;
export { Markdown };
