jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
6 lines (5 loc) • 328 B
TypeScript
import React from 'react';
import type { SelectCompProps } from '../../types';
export declare const SelectComp: React.FC<SelectCompProps>;
export { SelectComp as Select };
export declare const SelectWithRemoteOptions: React.ForwardRefExoticComponent<Pick<SelectCompProps, keyof SelectCompProps> & React.RefAttributes<unknown>>;