import type { Snippet } from 'svelte'; export type HighlightMarkTone = 'brand' | 'warning' | 'success'; interface HighlightMarkProps { text?: string; tone?: HighlightMarkTone; class?: string; children?: Snippet; } declare const HighlightMark: import("svelte").Component; type HighlightMark = ReturnType; export default HighlightMark;