import type { TableFormat } from 'roosterjs-editor-types'; /** * Get the format info of a table * If the table does not have a info saved, it will be retrieved from the css styles * @param table The table that has the info */ export declare function getTableFormatInfo(table: HTMLTableElement): Required | null; /** * @internal * Save the format info of a table * @param table The table the info will be saved * @param format The format of the table */ export declare function saveTableInfo(table: HTMLTableElement, format: TableFormat): void;