/** @typedef {typeof __propDef.props} CodeBlockProps */ /** @typedef {typeof __propDef.events} CodeBlockEvents */ /** @typedef {typeof __propDef.slots} CodeBlockSlots */ /** * CodeBlock * * Code block meant to be used inline * * Slots: * - default: text to be displayed * * CSS Variables: * - codeblockBg (default:#c0c0c0): BAckground color of the block */ export default class CodeBlock extends SvelteComponentTyped<{ [x: string]: never; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type CodeBlockProps = typeof __propDef.props; export type CodeBlockEvents = typeof __propDef.events; export type CodeBlockSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: never; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};