import { D as WorksheetOptions, o as CommentOptions } from "./worksheet-C9CP2B97.mjs"; import { BasePatchOptions, CorePropertiesOptions, OutputByType, OutputType } from "@office-open/core"; //#region src/patch.d.ts type ScalarValue = string | number | boolean | Date; type Patch = ScalarValue; interface PatchWorkbookOptions extends BasePatchOptions { placeholders?: Readonly>; findReplace?: Readonly>; coreProperties?: Partial; worksheets?: { replace?: Readonly>; append?: Readonly; }; comments?: Readonly>; } declare const patchWorkbook: ({ outputType, data, placeholders, findReplace, coreProperties, worksheets, comments, placeholderDelimiters }: PatchWorkbookOptions) => Promise; //#endregion export { Patch, PatchWorkbookOptions, ScalarValue, patchWorkbook }; //# sourceMappingURL=patch.d.mts.map