import { BaseTableCol } from './types';
export declare function isRowSelectedDisabled(selectColumn: {
    [key: string]: any;
}, row: Record<string, any>, rowIndex: number): boolean;
export declare function getColWidthAttr<T extends BaseTableCol<T>>(col: T, attrKey: 'width' | 'minWidth'): number;
