import { ReactElement } from 'react'; import { FormType } from '../../../interfaces'; export declare const defaultDisplayChoices: { label: string; value: string; }[]; export interface FormParametersProps { onChange?: (name: string | undefined, value: any) => void; form: Partial; typeChoices?: { label: string; value: any; }[]; displayChoices?: { label: string; value: any; }[]; enableTags?: boolean; className?: string; baseUrl?: string; layout?: "html5" | "choicesjs" | "react"; readonly?: Record; } export declare function FormParameters({ onChange, form, enableTags, typeChoices, displayChoices, className, readonly, layout, baseUrl }: FormParametersProps): ReactElement;