PromoCursed/node_modules/antd/lib/pagination/Select.d.ts
2024-08-20 23:25:37 +04:00

10 lines
333 B
TypeScript

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 };