import type { Children, Refkey } from "@alloy-js/core"; import type { HttpOperation } from "@typespec/http"; export interface HttpResponseProps { httpOperation: HttpOperation; responseRefkey: Refkey; children?: Children; } export declare function HttpResponse(props: HttpResponseProps): Children; export interface HttpResponsesProps { httpOperation: HttpOperation; children?: Children; } export declare function HttpResponses(props: HttpResponsesProps): Children; //# sourceMappingURL=http-response.d.ts.map