flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
8 lines (7 loc) • 321 B
TypeScript
/// <reference types="react" />
import type { FlowbiteTableHeadTheme } from "./TableHead";
export type TableHeadContext = {
theme: FlowbiteTableHeadTheme;
};
export declare const TableHeadContext: import("react").Context<TableHeadContext | undefined>;
export declare function useTableHeadContext(): TableHeadContext;