import { t as WorkbookOptions } from "./file-Clpwutq2.mjs"; import { Element } from "@office-open/xml"; import { DataType, ParsedArchive, parseArchive } from "@office-open/core"; //#region src/parse.d.ts interface XlsxPartRefs { worksheets: string[]; charts: string[]; media: string[]; drawings: string[]; } interface XlsxDocument { doc: ParsedArchive; workbook?: Element; worksheets: string[]; styles?: Element; sharedStrings?: Element; partRefs: XlsxPartRefs; coreProps?: string; appProps?: string; customProps?: string; } declare function parseXlsx(data: DataType): XlsxDocument; declare function parseWorkbook(data: DataType): WorkbookOptions; //#endregion export { XlsxDocument, XlsxPartRefs, parseArchive, parseWorkbook, parseXlsx }; //# sourceMappingURL=parse.d.mts.map