import type { Children, Refkey } from "@alloy-js/core"; import type { HttpOperation } from "@typespec/http"; export interface HttpRequestOptionsProps { httpOperation: HttpOperation; requestOptionsParamRefkey: Refkey; requestOptionsVarRefkey: Refkey; children?: Children; } export declare function HttpRequestOptions(props: HttpRequestOptionsProps): Children; export declare namespace HttpRequestOptions { var Headers: (props: HttpRequestOptionsHeadersProps) => Children; var Body: (props: HttpRequestOptionsBodyProps) => Children; } export interface HttpRequestOptionsHeadersProps { httpOperation: HttpOperation; requestOptionsParamRefkey: Refkey; children?: Children; } export interface HttpRequestOptionsBodyProps { httpOperation: HttpOperation; itemName?: string; children?: Children; } export declare function JSONSerializer(props: { children?: Children; }): Children; //# sourceMappingURL=http-request-options.d.ts.map