import React from "react"; import { TableContext, TableState } from "../../"; export declare const UPDATE_TABLE = "UPDATE_TABLE"; export declare const RESET_TABLE = "RESET_TABLE"; export declare const ContextTable: React.Context; export declare const updateTableAction: (payload: TableState) => { readonly type: "UPDATE_TABLE"; readonly payload: TableState; }; export declare const resetTableAction: () => { readonly type: "RESET_TABLE"; }; export declare const TableContextAPI: { initState: TableState; actions: { update: (payload: TableState) => { readonly type: "UPDATE_TABLE"; readonly payload: TableState; }; reset: () => { readonly type: "RESET_TABLE"; }; }; actionTypes: { readonly UPDATE_TABLE: "UPDATE_TABLE"; readonly RESET_TABLE: "RESET_TABLE"; }; };