export type SaxEvent = { kind: 'start'; name: string; attrs: Record; } | { kind: 'end'; name: string; } | { kind: 'text'; text: string; }; /** * Streamable input: `Uint8Array`, plain string, or a Web `ReadableStream` of * `Uint8Array` chunks (produced by xlsx zip entries via fflate, fetch, file * streams, etc.). */ export type SaxInput = Uint8Array | string | ReadableStream; /** * Parse the input as a stream of SAX events. Element / attribute names are * returned in Clark notation (`{ns}local`). */ export declare function iterParse(input: SaxInput): AsyncIterableIterator;