import type { IEditor } from 'roosterjs-content-model-types'; /** * Toggle numbering list type * - When there are some blocks not in numbering list, set all blocks to the given type * - When all blocks are already in numbering list, turn off / outdent there list type * @param editor The editor to operate on * @param removeMargins true to remove margins, false to keep margins @default false */ export declare function toggleNumbering(editor: IEditor, removeMargins?: boolean): void;