import { Children } from "@alloy-js/core"; import { ModifierProps } from "./Modifiers.jsx"; import { TypeParametersProps } from "./TypeParameters.jsx"; export interface MethodProps extends ModifierProps, TypeParametersProps { name: string; return?: Children; throws?: Children; parameters?: Record; children?: Children; } export declare function Method(props: MethodProps): Children; //# sourceMappingURL=Method.d.ts.map