///
type Options = string[];
type Option = Options[number] | null;
type ChoiceRenderFn = (selection: Option, options: Options, select: (option: Option) => void, isEditing: boolean) => JSX.Element;
declare const ChoiceField: import("react").NamedExoticComponent<{
displayName?: React.ReactNode;
options: Options;
render: ChoiceRenderFn;
renderPopover: ChoiceRenderFn | null;
} & import("../..").JaenFieldProps