import Select, { SelectProps } from '../select';
import React from 'react';
import GhostSelect from './GhostSelect';
export interface ISelectProps extends SelectProps {
    title?: string;
    ghost?: boolean;
    type?: 'select' | 'checkbox' | 'cascader';
}
declare const LMSelect: React.FC<ISelectProps> & {
    Option?: typeof Select.Option;
    OptGroup?: typeof Select.OptGroup;
    GhostSelect?: typeof GhostSelect;
};
export default LMSelect;
