import { IResponse, IBodyInit, IResponseInit, IHeaders } from '../../base/interfaces/official'; import { IResponseProperties } from '../../base/official-klasses/Response'; export declare const getState: (instance: IResponse) => IResponseProperties, setState: (instance: IResponse, properties: Partial) => void; declare const ResponseBaseClass: { new (_body?: IBodyInit | null | undefined, _init?: IResponseInit | undefined): { readonly headers: IHeaders; readonly ok: Promise; readonly redirected: Promise; readonly status: Promise; readonly statusText: Promise; readonly type: Promise; readonly url: Promise; readonly bodyUsed: Promise; arrayBuffer(): Promise; json(): Promise; text(): Promise; }; }; export default class Response extends ResponseBaseClass implements IResponse { constructor(_body?: IBodyInit | null, _init?: IResponseInit); get headers(): IHeaders; } export {};