import { Name, Show } from "@alloy-js/core";
import type { CommonDeclarationProps } from "./Declaration.js";
import { Declaration } from "./Declaration.js";
import { JSDoc } from "./JSDoc.jsx";
import { ensureTypeRefContext } from "./TypeRefContext.jsx";
export interface TypeDeclarationProps extends CommonDeclarationProps {}
export const TypeDeclaration = ensureTypeRefContext(function TypeDeclaration(
props: TypeDeclarationProps,
) {
return (
<>
type = {props.children};
>
);
});