import PropTypes from "prop-types"; import { ReactElement } from "react"; import { FormSchema } from "../../interfaces/FormSchema"; export declare const defaultDisplayChoices: { label: string; value: string; }[]; export interface FormParametersProps { onChange?: (name: string, value: any) => void; form: Partial; typeChoices?: { label: string; value: any; }[]; displayChoices?: { label: string; value: any; }[]; enableTags?: boolean; className?: string; } export declare function FormParameters({ onChange, form, enableTags, typeChoices, displayChoices, className }: FormParametersProps): ReactElement; export declare namespace FormParameters { var propTypes: { onChange: PropTypes.Requireable<(...args: any[]) => any>; form: PropTypes.Requireable; enableTags: PropTypes.Requireable; typeChoices: PropTypes.Requireable; displayChoices: PropTypes.Requireable; className: PropTypes.Requireable; }; }