import type * as React from "react";
interface LegacyDataTableProps {
    className?: string;
    title?: string;
    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 LegacyDataTable({ title, className, children }: LegacyDataTableProps): React.ReactElement;
export {};
