import { FC, CSSProperties } from 'react';
import { SelectProps } from 'antd';
type ThemeType = 'pc' | 'screen';
interface IXGraySelect extends SelectProps<any> {
    theme?: ThemeType;
    className?: string;
    style?: CSSProperties;
}
declare const XGraySelect: FC<IXGraySelect>;
export default XGraySelect;
