amis-rpc-design/node_modules/antd/lib/pagination/Select.d.ts

10 lines
333 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
import * as React from 'react';
import type { SelectProps } from '../select';
import Select from '../select';
type CompoundedComponent = React.FC<SelectProps> & {
Option: typeof Select.Option;
};
declare const MiniSelect: CompoundedComponent;
declare const MiddleSelect: CompoundedComponent;
export { MiniSelect, MiddleSelect };