/// import { OUIAProps } from '@patternfly/react-core/dist/esm/helpers'; export interface TrProps extends Omit, 'onResize'>, OUIAProps { /** Content rendered inside the row */ children?: React.ReactNode; /** Additional classes added to the row */ className?: string; /** @hide Forwarded ref */ innerRef?: React.Ref; /** Flag indicating the Tr is hidden */ isHidden?: boolean; /** Flag indicating whether an "expandable" Tr is expanded or not. Only applicable to a Tr within a Tbody. * To prevent column widths from responding automatically when expandable rows are toggled, the width prop must also be passed into either the th or td component */ isExpanded?: boolean; /** Flag indicating that the "control row" Tr has an expandable sibling Tr that is expanded or not. Only applicable to * a Tr within a Tbody, and should have the same value as an expandable Tr's isExpanded prop. */ isContentExpanded?: boolean; /** Only applicable to Tr within the Tbody: Whether the row is editable */ isEditable?: boolean; /** Flag which adds hover styles for the clickable table row */ isClickable?: boolean; /** Flag indicating the row is selected - adds selected styling */ isRowSelected?: boolean; /** Flag indicating the row is striped */ isStriped?: boolean; /** Flag indicating the row will act as a border. This is typically used for a table with a nested and sticky header. */ isBorderRow?: boolean; /** Flag indicating the row is controlling the expansion of another row. */ isControlRow?: boolean; /** An event handler for the row */ onRowClick?: (event?: React.KeyboardEvent | React.MouseEvent) => void; /** Flag indicating that the row is selectable */ isSelectable?: boolean; /** Flag indicating the spacing offset of the first cell should be reset */ resetOffset?: boolean; /** Value to overwrite the randomly generated data-ouia-component-id.*/ ouiaId?: number | string; /** Set the value of data-ouia-safe. Only set to true when the component is in a static state, i.e. no animations are occurring. At all other times, this value must be false. */ ouiaSafe?: boolean; } export declare const Tr: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=Tr.d.ts.map