import * as React from 'react'; import { RowChange } from '../types'; export declare const SelectControl: React.FC<{ disabled?: boolean; rowId?: string; name: string; label: string; selected?: boolean; onSelect?: RowChange; }>;