import AntSelect from "antd/es/select"; import React from "react"; import type { SelectProps, SelectValue, DefaultOptionType, OptionProps as SelectOptionProps } from "antd/es/select"; export type { SelectValue, SelectOptionProps }; export interface Props extends Omit, "options"> { options?: Array; } declare const Option: typeof AntSelect.Option; declare const OptGroup: typeof AntSelect.OptGroup; declare const InternalSelect: (props: Props) => React.JSX.Element; export declare const Select: typeof InternalSelect & { Option: typeof Option; OptGroup: typeof OptGroup; };