/// import { UserConfig } from '../../..'; import { IBlockType } from '../../store/storetype'; import { CreateOptionsRes, FormBaseType } from '../formTypes'; export interface FormAnimateControlType extends FormBaseType { } interface AnimateControlProps { data: CreateOptionsRes<'animateControl'>; current: IBlockType; config: UserConfig; } /** * * 这个控制组件配置项写死,只可能出现或者不出现 * @return {*} */ declare function AnimateControl(props: AnimateControlProps): JSX.Element; export default AnimateControl;