linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
15 lines (14 loc) β’ 450 B
TypeScript
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;