/** * SvKbd - a keyboard-key hint. Pass `keys` for a combo (joined with the OS * separator), or a single `children` label. * * ยท Esc */ import type { Snippet } from 'svelte'; type Props = { /** Key sequence, rendered as separate caps. */ keys?: string[]; /** Separator between keys. */ separator?: string; size?: 'sm' | 'md'; children?: Snippet; }; declare const SvKbd: import("svelte").Component; type SvKbd = ReturnType; export default SvKbd;