/** * One . The `rId` points at a Custom XML part registered in the * worksheet rels (e.g. for SharePoint sync metadata). */ export interface WorksheetCustomProperty { name: string; /** Worksheet-rels rId pointing at the Custom XML part backing this entry. */ rId?: string; } export interface WebPublishItem { id: number; divId: string; sourceType: 'sheet' | 'printArea' | 'autoFilter' | 'range' | 'chart' | 'pivotTable' | 'query' | 'label'; sourceRef?: string; sourceObject?: string; destinationFile: string; title?: string; autoRepublish?: boolean; } export declare const makeWorksheetCustomProperty: (opts: WorksheetCustomProperty) => WorksheetCustomProperty; export declare const makeWebPublishItem: (opts: WebPublishItem) => WebPublishItem;