/** * SvMark - highlighted inline text (a themed ``), for search-hit * highlighting and call-outs. Colour by `tone`. * * matched ยท passed */ import type { Snippet } from 'svelte'; type Props = { tone?: 'yellow' | 'accent' | 'success' | 'warning' | 'error'; children?: Snippet; }; declare const SvMark: import("svelte").Component; type SvMark = ReturnType; export default SvMark;