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