import type { ComponentProps, FC, PropsWithChildren } from "react"; import type { DeepPartial } from "../../helpers/deep-partial"; export interface keepTableRowTheme { base: string; hovered: string; striped: string; } export interface TableRowProps extends PropsWithChildren, ComponentProps<"tr"> { theme?: DeepPartial; } export declare const TableRow: FC;