import React from 'react'; import { Key } from 'antd/lib/table/interface'; export interface FinTableSelectContextProps { selectedKeys: Key[]; setSelectedKeys: Function; } export declare const initTableSelect: FinTableSelectContextProps; export declare const FinTableSelectContext: React.Context;