import type { MultiCellRange } from './cell-range'; export interface ProtectedRange { /** Range to expose for editing while the sheet is protected. */ sqref: MultiCellRange; /** Display name shown in the dialog. */ name: string; /** Legacy 16-bit hex password. */ password?: string; /** Optional security descriptor (Windows ACL string). */ securityDescriptor?: string; algorithmName?: string; hashValue?: string; saltValue?: string; spinCount?: number; } export declare const makeProtectedRange: (opts: Partial & { sqref: MultiCellRange; name: string; }) => ProtectedRange;