import type { OneOrMany } from "./util.js"; export interface Drawing { $attributes?: { id: string; }; } export interface TablePart { $attributes?: { id: string; }; } export interface TableParts { $attributes?: { count?: number; }; tablePart?: OneOrMany; } export interface Extension { $attributes?: { uri: string; }; [key: string]: unknown; } export interface ExtensionList { ext?: OneOrMany; } export type OleObjects = Record; export type Controls = Record;