/** * 不建议用,以后可能会删除。可以直接用组合出来,不需要新建一个组件。 */ import React from 'react'; import type { Option } from 'jamis-core'; import type { RepeatProps } from './types'; declare class RepeatControl extends React.Component { static defaultProps: Partial; constructor(props: RepeatProps); handleOptionChange(option: Option): void; handleChange(value: string): void; renderInput(): JSX.Element; render(): JSX.Element; } export declare class RepeatControlRenderer extends RepeatControl { } export {};