type RadioEditorProps = { options: { value: string | number; label: string; }[]; onChange: (value: string | number) => void; defaultValue: string | number; currentValue?: string | number; }; declare const RadioEditor: ({ options, currentValue, defaultValue, onChange, }: RadioEditorProps) => JSX.Element; export default RadioEditor; export declare const radioEditorForDefinitions: (options: RadioEditorProps["options"], defaultValue: RadioEditorProps["defaultValue"]) => (props: Omit) => JSX.Element; //# sourceMappingURL=index.d.ts.map