import { SvelteComponentTyped } from "svelte"; import type { ASTNode } from '../../core'; declare const __propDef: { props: { node: ASTNode; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type CodeBlockRendererProps = typeof __propDef.props; export declare type CodeBlockRendererEvents = typeof __propDef.events; export declare type CodeBlockRendererSlots = typeof __propDef.slots; export default class CodeBlockRenderer extends SvelteComponentTyped { } export {};