import type * as React from "react";
export interface LegacyDataTableRowProps {
    displayNoBorder?: boolean;
    displayNoBottomBorderForLastRow?: boolean;
    className?: string;
    disabled?: boolean | null;
    onClick?: (e: React.MouseEvent<HTMLTableRowElement>) => void;
    children?: React.ReactNode;
}
/**
 * @deprecated
 * Deprecated: 28/05/2026
 * Replacement: SimpleDataTable
 * Reason: This component is deprecated and will be removed in a future release.
 */
export declare function LegacyDataTableRow({ displayNoBorder, className, disabled, displayNoBottomBorderForLastRow, children, ...otherProps }: LegacyDataTableRowProps): React.ReactElement;
