/** * SvCode - monospace code. Inline by default; set `block` for a padded, * horizontally-scrolling code block. Pass `code` as a string or use the * `children` snippet. No syntax highlighting (bring your own). * * npm i @svgrid/grid * */ import type { Snippet } from 'svelte'; type Props = { /** Render as a padded block instead of inline. */ block?: boolean; /** Code as a string (skip the snippet). */ code?: string; children?: Snippet; }; declare const SvCode: import("svelte").Component; type SvCode = ReturnType; export default SvCode;