import type { ITableCellOptions, ITableOptions, ITableRowOptions } from 'docx'; type TableSizingDocxOptions = Pick; type TableCellSizingDocxOptions = Pick; type TableRowSizingDocxOptions = Pick; export declare function documentTableSizingDocxOptions(table: HTMLTableElement, docx: typeof import('docx')): TableSizingDocxOptions; export declare function documentTableCellSizingDocxOptions(cell: HTMLTableCellElement, docx: typeof import('docx')): TableCellSizingDocxOptions; export declare function documentTableRowSizingDocxOptions(row: HTMLTableRowElement, docx: typeof import('docx')): TableRowSizingDocxOptions; export {};