import React from "react"; export interface RowProps extends React.HTMLAttributes { /** * Row is selected * @default false */ selected?: boolean; /** * Shade the table row on hover. * @default true */ shadeOnHover?: boolean; /** * Click handler for row. This differs from onClick by not being called * when clicking on interactive elements within the row (buttons, links, inputs etc). * * **Warning:** This will not be accessible by keyboard! Provide an alternative way to select the row, e.g. a checkbox or a button. */ onRowClick?: (event: React.MouseEvent) => void; } export type RowType = React.ForwardRefExoticComponent>; export declare const Row: RowType; export default Row;