import type { ReactNode } from "react"; export type TableContextType = { striped?: boolean; hoverable?: boolean; showCheckbox?: boolean; icon?: ReactNode; iconPosition?: string; showBorder?: boolean; showBorderPosition?: "left" | "right"; }; export declare const TableContext: import("react").Context; export declare function useTableContext(): TableContextType;