import type { IEditor, TableMetadataFormat } from 'roosterjs-content-model-types'; /** * Format current focused table with the given format * @param editor The editor instance * @param format The table format to apply * @param keepCellShade Whether keep existing shade color when apply format if there is a manually set shade color */ export declare function formatTable(editor: IEditor, format: TableMetadataFormat, keepCellShade?: boolean): void;