import { TableRowType } from '../types'; import * as React from 'react'; export interface TableRowProps { /** * `alert` | `attention` | `error` | `muted` | `success` or an array of these types. */ type?: TableRowType | TableRowType[]; /** * Whether the row is being dragged (styling only) */ dragging?: boolean; /** * Whether the row looks disabled */ disabled?: boolean; children?: React.ReactNode; } export declare const TableRow: React.ForwardRefExoticComponent>;