//#region src/writer.d.ts
declare function writer<T>(chunk: T): void;
type InferWriterType<T> = T extends typeof writer<infer C> ? C : any;
//#endregion
export { InferWriterType, writer };
//# sourceMappingURL=writer.d.ts.map