import type { SvelteSet } from 'svelte/reactivity'; interface Props { lines: string[]; startingLineNumber?: number; highlightedLines: SvelteSet; width: number; position?: 'static' | 'relative' | 'absolute' | 'sticky'; hideBorder?: boolean; wrapLines?: boolean; backgroundColor?: string; highlightedBackground?: string; } /** * [Go to docs](https://svelte-rune-highlight.codewithshin.com/) * ## Props * @prop lines * @prop startingLineNumber = 1 * @prop highlightedLines * @prop width * @prop position = 'sticky' * @prop hideBorder * @prop wrapLines * @prop backgroundColor * @prop highlightedBackground = 'rgba(254 * @prop 241 * @prop 96 * @prop 0.2)' */ declare const LineNumberTable: import("svelte").Component; type LineNumberTable = ReturnType; export default LineNumberTable;