import { type SlotOptions } from "./index.js"; export interface SlotTextParams { text: string; options?: SlotOptions; } export declare function slotText(element: HTMLElement, params: SlotTextParams): { update(params: SlotTextParams): void; destroy(): void; };