import { LitElement } from 'lit'; /** * `` component to display code snippets inline within HTML content. * @slot unnamed - inline code snippet slot. */ export declare class InlineCodeView extends LitElement { static styles: import("lit").CSSResult; /** Sets background and text theming. */ accessor darkTheme: 'light' | 'dark' | 'default'; /** Font size value (px) to match code snippet font-size of surrounding text (min, default 14px). */ accessor snippetFontSize: number; render(): import("lit-html").TemplateResult<1>; } //# sourceMappingURL=inlineCodeView.d.ts.map