flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
6 lines (5 loc) • 335 B
text/typescript
import type { ThemingProps } from "../../types";
import type { TableHeadTheme } from "./TableHead";
export type TableHeadContextValue = ThemingProps<TableHeadTheme>;
export declare const TableHeadContext: import("react").Context<TableHeadContextValue | undefined>;
export declare function useTableHeadContext(): TableHeadContextValue;