import React, { ComponentProps } from 'react';
import { Select as AntSelect } from 'antd';
type SelectProps = ComponentProps<typeof AntSelect> & {
    async?: boolean;
    debounceTimeout?: number;
    isOpen?: boolean;
    wrapOptionText?: boolean;
};
declare const Select: (props: SelectProps) => React.ReactNode;
export default Select;
