import { HookFetchPlugin } from "./types-DOFlmwin.js";

//#region src/plugins/sse.d.ts
interface SSETextDecoderPluginOptions {
  splitSeparator: string;
  lineSeparator: string | undefined;
  trim: boolean;
  json: boolean;
  prefix: string;
  doneSymbol: string;
}
declare function sseTextDecoderPlugin({
  splitSeparator,
  lineSeparator,
  trim,
  json,
  prefix,
  doneSymbol
}?: Partial<SSETextDecoderPluginOptions>): HookFetchPlugin<unknown, {
  sseAble: boolean;
}>;
//#endregion
export { SSETextDecoderPluginOptions, sseTextDecoderPlugin };