import type { ThemingProps } from "../../types"; import type { TableTheme } from "./Table"; export interface TableContextValue extends ThemingProps { striped?: boolean; hoverable?: boolean; } export declare const TableContext: import("react").Context; export declare function useTableContext(): TableContextValue;