export type TableHeadItem = { key: string; item: string | React.ReactNode; width: string; }; export type TableHeadProps = { items: TableHeadItem[]; bgColor: string; borderColor: string; }; export declare const TableHead: ({ items, bgColor, borderColor }: TableHeadProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TableHead.d.ts.map