import { type DocxIgnorableExtensionPair } from './work-docx-ignorable-extension-preservation'; export interface StaticContentControlDefinition { content: Element; control: Element; endProperties: Element | null; id: string | null; multiLine: boolean; properties: Element; type: 'richText' | 'text'; } export interface StaticContentControlShell { content: Element; control: Element; pairs: DocxIgnorableExtensionPair[]; } export declare function readStaticContentControlDefinition(control: Element): StaticContentControlDefinition | null; export declare function createStaticContentControlShell(document: Document, source: StaticContentControlDefinition, assignedId: string | null, targetContext: Element, kind: 'comment' | 'note'): StaticContentControlShell | null;