import * as React from 'react'; import { RowChange } from '../types'; export interface ExpandColProps { expanded?: boolean; onExpand?: RowChange; ghost?: boolean; disabled?: boolean; id?: any; } export declare const ExpandControl: React.FC;