import type { Children, Namekey, Refkey } from "@alloy-js/core"; export interface ObjectExpressionProps { children?: Children; jsValue?: [string, unknown][] | Map | Record; } export declare function ObjectExpression(props: ObjectExpressionProps): Children; export interface ObjectPropertyProps { name?: string | Namekey; nameExpression?: Children; value?: Children; jsValue?: unknown; children?: Children; refkey?: Refkey | Refkey[]; } export declare function ObjectProperty(props: ObjectPropertyProps): Children; export interface ObjectSpreadPropertyProps { value?: Children; jsValue?: unknown; children?: Children; } export declare function ObjectSpreadProperty(props: ObjectSpreadPropertyProps): Children; //# sourceMappingURL=ObjectExpression.d.ts.map