import { type ReactElement, type ReactNode } from "react"; import { type IntlShape } from "react-intl"; interface IParameterProps { name: string; description?: string; detailContent?: ReactElement; detailTrigger?: ReactNode; iconClassName: string; onAdd: () => void; intl: IntlShape; } export declare function Parameter({ name, description, detailContent, detailTrigger, iconClassName, onAdd, intl }: IParameterProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Parameter.d.ts.map