/// <reference types="react" />
declare const TableContext: import("react").Context<{
    state: any;
    dispatch: any;
    instance: any;
}>;
declare const useStore: () => {
    state: any;
    dispatch: any;
    instance: any;
};
declare const useRealive: () => [any, import("react").Dispatch<any>];
export { TableContext, useStore, useRealive };
