import React from 'react'; import { FlintTableRow as FlintTableRowElement } from '@getufy/flint-ui/table/flint-table'; /** * A single row within a ``, ``, or ``. Supports selected and hover highlight states. * * @slot (default) - Accepts one or more `` elements. */ export interface FlintTableRowProps extends React.HTMLAttributes { /** Highlights the row as selected. */ selected?: boolean; /** Forces the hover highlight state. */ hover?: boolean; } export declare const FlintTableRow: React.ForwardRefExoticComponent>;