import { Children } from "@alloy-js/core"; export interface ArgumentListProps { args?: Children[]; omitParensWhenEmpty?: boolean; } /** * A list of arguments to be passed to a function, constructor, enum, and so * forth. Includes parenthesis when arguments are passed, otherwise returns an * empty string. */ export declare function ArgumentList(props: ArgumentListProps): Children; //# sourceMappingURL=ArgumentList.d.ts.map