import type { Children, Refkey } from "@alloy-js/core"; import type { HttpOperation } from "@typespec/http"; export interface HttpRequestProps { httpOperation: HttpOperation; operationOptionsParamRefkey: Refkey; responseRefkey?: Refkey; } export declare function HttpRequest(props: HttpRequestProps): Children; export declare namespace HttpRequest { var Url: (props: HttpUrlProps) => Children; } export interface HttpUrlProps { httpOperation: HttpOperation; requestOptionsParamRefkey: Refkey; pathVarRefkey?: Refkey; children?: Children; } //# sourceMappingURL=http-request.d.ts.map