import { Children } from "@alloy-js/core/jsx-runtime"; import { ModifierProps } from "./Modifiers.jsx"; export interface ConstructorProps extends ModifierProps { name?: string; parameters?: Record; children?: Children; } /** * Declare a constructor, usually for a class or enum * If no name is provided, will try take name from class or enum declaration */ export declare function Constructor(props: ConstructorProps): Children; //# sourceMappingURL=Constructor.d.ts.map