export declare enum RowSelectionType {
    "single-line" = 0,
    "multi-line" = 1
}
export interface IRowSelectionProps<T> {
    selectedRow?: T | T[];
    onChangeSelectedRow?: (data: T) => void;
    selectedRowProps?: (data: T) => object;
    columnName: string;
}
export type RowSelectionProps<T> = IRowSelectionProps<T>;
