import { SchemaProp } from '../../json-schema/model.js'; import { Field } from './field.js'; type Choice = { value: string; label: string; group?: string; }; export declare function parseChoices(choices?: Choice[]): Choice[] | undefined; export declare class FieldArray extends Field { choices: any[]; itemGroups?: any; constructor(prop: SchemaProp, index?: number, name?: string); } export {};