flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
9 lines (8 loc) • 365 B
text/typescript
import type { ThemingProps } from "../../types";
import type { TableTheme } from "./Table";
export interface TableContextValue extends ThemingProps<TableTheme> {
striped?: boolean;
hoverable?: boolean;
}
export declare const TableContext: import("react").Context<TableContextValue | undefined>;
export declare function useTableContext(): TableContextValue;