import { default as React } from 'react';
import { Row as TanstackRow } from '@tanstack/react-table';
export interface RowProps<TData> {
    row?: TanstackRow<TData>;
    enableRowSelection?: boolean;
    children?: React.ReactNode;
    selected?: boolean;
    className?: string;
}
export declare const Row: <TData>(props: RowProps<TData> & React.RefAttributes<HTMLTableRowElement>) => JSX.Element | null;
