import type { CSSProperties, MouseEventHandler, ReactNode } from 'react'; import type { SENTIMENTS, space } from '../../theme'; type RowProps = { children: ReactNode; id: string; expandable?: ReactNode; /** * Row cannot be selected if this prop is provided. boolean true disabled selection, a string disable selection and a tooltip will be displayed on checkbox hover. */ selectDisabled?: boolean | string; disabled?: boolean; sentiment?: (typeof SENTIMENTS)[number]; expanded?: boolean; className?: string; /** * Define a custom padding for the content in the expandable */ expandablePadding?: keyof typeof space; highlightAnimation?: boolean; 'data-testid'?: string; style?: CSSProperties; 'data-dragging'?: boolean; onMouseEnter?: MouseEventHandler; onMouseLeave?: MouseEventHandler; onClick?: (id: string) => void; disabledClickRowToExpand?: boolean; }; export declare const Row: import("react").ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Row.d.ts.map