export type HighlightTone = "neutral" | "info" | "success" | "warning" | "error"; import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; type HighlightProps = Omit, "class" | "title"> & { /** Tonalité de l'encart (couleur d'accent). */ tone?: HighlightTone; /** Titre optionnel de la mise en avant. */ title?: string; class?: string; children?: Snippet; }; declare const Highlight: import("svelte").Component; type Highlight = ReturnType; export default Highlight; //# sourceMappingURL=Highlight.svelte.d.ts.map