import type { ReactNode } from 'react';
interface Props {
    children: ReactNode;
    selected?: boolean;
    ariaRowIndex: number;
    rowNumber?: number;
    title?: string;
}
export default function Row({ children, ariaRowIndex, selected, rowNumber, title, }: Props): import("react/jsx-runtime").JSX.Element;
export {};
