import type { LangTagProps } from './types'; /** * [Go to docs](https://svelte-rune-highlight.codewithshin.com/) * ## Props * @prop code = '' * @prop highlighted = '' * @prop languageName = 'plaintext' * @prop langtag = false * @prop class: className = '' * @prop codeClass * @prop ...restProps */ declare const LangTag: import("svelte").Component; type LangTag = ReturnType; export default LangTag;