import { Children } from "@alloy-js/core"; import { TypeParameterDescriptor } from "@alloy-js/typescript"; //#region src/typescript/components/type-parameters.d.ts /** Props for type parameters */ interface TypeParametersProps { /** Parameters */ parameters?: TypeParameterDescriptor[] | string[]; /** Jsx Children */ children?: Children; } /** * Represent type parameters * * @example * ```ts * * ``` */ declare function TypeParameters(props: TypeParametersProps): Children; //#endregion export { TypeParametersProps as n, TypeParameters as t }; //# sourceMappingURL=type-parameters-BzCDG9lT.d.mts.map