import type { Refkey } from "@alloy-js/core"; export interface ReferenceProps { refkey: Refkey; /** * Whether this is a reference to a type. * * @remarks * This affect things like import where `type` keyword might be used. */ type?: boolean; } export declare function Reference({ refkey, type }: ReferenceProps): import("@alloy-js/core").Children; //# sourceMappingURL=Reference.d.ts.map