import type { CSSProperties, ReactNode } from 'react'; type RowProps = { children: ReactNode; expandable?: ReactNode; className?: string; id: string; 'data-testid'?: string; /** * 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; highlightAnimation?: boolean; expanded?: boolean; style?: CSSProperties; }; export declare function Row({ children, className, id, selectDisabled, highlightAnimation, expandable, expanded, style, 'data-testid': dataTestid, }: RowProps): import("react").JSX.Element; export declare namespace Row { var displayName: string; } export {}; //# sourceMappingURL=Row.d.ts.map