import type { IEditor, ShallowMutableContentModelParagraph } from 'roosterjs-content-model-types'; /** * Invoke a callback to format the selected paragraph using Content Model * @param editor The editor object * @param apiName Name of API this calling this function. This is mostly for logging. * @param setStyleCallback The callback to format the paragraph. It will be called with current selected table. If no table is selected, it will not be called. */ export declare function formatParagraphWithContentModel(editor: IEditor, apiName: string, setStyleCallback: (paragraph: ShallowMutableContentModelParagraph) => void): void;