import { IAccessor, IMutation, IMutationInfo } from '@univerjs/core'; import { IAddRangeProtectionMutationParams } from './add-range-protection.mutation'; export interface IDeleteRangeProtectionMutationParams { ruleIds: string[]; unitId: string; subUnitId: string; } export declare const FactoryDeleteRangeProtectionMutation: (accessor: IAccessor, param: IDeleteRangeProtectionMutationParams) => IMutationInfo>; export declare const DeleteRangeProtectionMutation: IMutation;