import type { YooEditor } from '../types'; import type { SetSelectedOptions } from './types'; /** * Set selected block orders * * @param editor - YooEditor instance * @param options - Set selected options * * @example * ```typescript * // Select single block * Selection.setSelected(editor, { at: 0 }); * * // Select multiple blocks * Selection.setSelected(editor, { at: [0, 1, 2] }); * * // Select with source * Selection.setSelected(editor, { * at: [0, 1], * source: 'selection-box' * }); * ``` */ export declare function setSelected(editor: YooEditor, options: SetSelectedOptions): void; //# sourceMappingURL=setSelected.d.ts.map