interface Props {
    lang: string;
    text: string;
}
/**
 * Renders a fenced code block as a `<pre><code>` element. The language identifier
 * is applied as a CSS class on the `<pre>` for use with syntax highlighting libraries.
 *
 * @prop {string} lang - Language identifier from the code fence (e.g. `"js"`, `"typescript"`).
 * @prop {string} text - Raw text content of the code block.
 */
declare const Code: import("svelte").Component<Props, {}, "">;
type Code = ReturnType<typeof Code>;
export default Code;
