import { html, type TemplateResult } from 'lit';
import type { DeltaInsert } from '../types.js';
import type { BaseTextAttributes } from './base-attributes.js';
export function renderElement(
delta: DeltaInsert,
parseAttributes: (
textAttributes?: TextAttributes
) => TextAttributes | undefined,
selected: boolean
): TemplateResult<1> {
return html``;
}