import React, { CSSProperties } from 'react'; import './index.less'; export interface SelectProps { columns?: number; singleCol?: boolean; data: Array<{ label: string; value: string; description?: React.ReactNode; disabled?: boolean; }>; value?: any; showCheckMark?: boolean; style?: CSSProperties; defaultValue?: any; multiple?: boolean; onChange?: (value: string | number) => void; disabled?: boolean; onlyShowChecked?: boolean; } export declare const Select: React.ForwardRefExoticComponent & React.RefAttributes>>;