import { HttpBody } from "../http"; export declare class StringBody implements HttpBody { private readonly content; constructor(content: string); asString(): Promise; [Symbol.asyncIterator](): AsyncGenerator; }