import React from 'react'; import type { IOptionItem } from '@music163/tango-helpers'; import { FormItemComponentProps } from '@music163/tango-setting-form'; interface ChoiceSetterProps { options?: IOptionItem[]; } export declare function ChoiceSetter({ options, onChange, ...props }: FormItemComponentProps & ChoiceSetterProps): React.JSX.Element; export {};