import type { ReactTableHooks } from '../types/index.js';
/**
 * A plugin hook for manual row selection.
 *
 * @param {string} manualRowSelectedKey - If this key is found on the original data row, and it is true, this row will be manually selected. __Defaults to `"isSelected"`__.
 */
export declare const useManualRowSelect: (manualRowSelectedKey?: string) => {
    (hooks: ReactTableHooks): void;
    pluginName: string;
};
