import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import { IBody } from '../interfaces/official'; export declare const getState: (instance: IBody) => IBodyProperties, setState: (instance: IBody, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export default class Body implements IBody { get bodyUsed(): Promise; arrayBuffer(): Promise; json(): Promise; text(): Promise; } export interface IBodyProperties { awaitedPath: AwaitedPath; awaitedOptions: any; readonly bodyUsed?: Promise; } export declare const BodyPropertyKeys: string[]; export declare const BodyConstantKeys: never[];