import type { SelectProps as AntdSelectProps } from 'antd'; import React from 'react'; export type SelectProps = AntdSelectProps & { type: string; }; declare const InternalSelect: React.FC; export default InternalSelect;