import type { ValueOf } from '../utils/ValueOf.js';
/**
 * The content type of the request.
 *
 * @group Request
 *
 * @beta
 */
export declare const RequestType: {
    readonly TEXT: "text";
    readonly JSON: "json";
    readonly BLOB: "blob";
    readonly ARRAY_BUFFER: "arrayBuffer";
    readonly DOCUMENT: "document";
};
/**
 * @beta
 */
export type RequestType = ValueOf<typeof RequestType>;
//# sourceMappingURL=RequestType.d.ts.map