import { Children } from "@alloy-js/core"; import { CommonDeclarationProps } from "./Declaration.js"; import { ModifierProps } from "./Modifiers.jsx"; export interface ObjectDeclarationProps extends CommonDeclarationProps, ModifierProps { type: Children; args?: Children[]; } /** * Shorthand to instantiate a new object. * Declares it with 'new' and passes arguments to the constructor of the object, if any */ export declare function ObjectDeclaration(props: ObjectDeclarationProps): Children; //# sourceMappingURL=ObjectDeclaration.d.ts.map