import { IAccessor, IMutation, IMutationInfo } from '@univerjs/core'; import { IRangeProtectionRule } from '../../model/range-protection-rule.model'; export interface ISetRangeProtectionMutationParams { rule: IRangeProtectionRule; unitId: string; subUnitId: string; ruleId: string; } export declare const SetRangeProtectionMutation: IMutation; export declare const FactorySetRangeProtectionMutation: (accessor: IAccessor, param: ISetRangeProtectionMutationParams) => IMutationInfo | null;