import * as React from "react"; import { type VariantProps } from "../../utils.js"; declare const rowVariants: (props?: ({ selected?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface RowProps extends React.HTMLAttributes, VariantProps { } declare const Row: ({ className, selected, ...props }: RowProps) => React.JSX.Element; export { Row, type RowProps };