import React from "react"; export declare type TableRowProps = JSX.IntrinsicElements["tr"] & { checked?: boolean; indeterminate?: boolean; isHeaderRow?: boolean; hideSelect?: boolean; uniqueKey?: string; parentKey?: string; isExpanded?: boolean; isSubRow?: boolean; collapseButtonProps?: JSX.IntrinsicElements["button"]; checkboxProps?: JSX.IntrinsicElements["input"]; }; declare const TableRow: React.FC; export { TableRow };