import { Schema } from 'airtight';
import { HttpDict } from './HttpDict.js';
export interface ResponseSpec {
    status: number;
    headers: HttpDict;
    body: any;
    attributes?: Record<string, string>;
}
export declare const ResponseSpecSchema: Schema<ResponseSpec>;
