import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; language?: string | undefined; code?: string | undefined; background?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type CodeBlockProps = typeof __propDef.props; export declare type CodeBlockEvents = typeof __propDef.events; export declare type CodeBlockSlots = typeof __propDef.slots; export default class CodeBlock extends SvelteComponentTyped { } export {};