import { CommonDeclarationProps, TypeParameterDescriptor } from "@alloy-js/typescript"; //#region src/typescript/components/type-declaration.d.ts interface TypeDeclarationProps extends CommonDeclarationProps { /** * The generic type parameters of the interface. */ typeParameters?: TypeParameterDescriptor[] | string[]; } /** * Renders a TypeScript type declaration, including its name, optional TSDoc comment, and generic type parameters. */ declare const TypeDeclaration: import("@alloy-js/core").Component; //#endregion export { TypeDeclarationProps as n, TypeDeclaration as t }; //# sourceMappingURL=type-declaration-BLvkozNR.d.mts.map