import * as React from 'react'; export interface TbodyProps extends React.HTMLProps { /** Content rendered inside the row group */ children?: React.ReactNode; /** Additional classes added to the element */ className?: string; /** Modifies the body to allow for expandable rows */ isExpanded?: boolean; /** @hide Forwarded ref */ innerRef?: React.Ref; /** Flag indicating the contains oddly striped rows. */ isOddStriped?: boolean; /** Flag indicating the contains evenly striped rows. */ isEvenStriped?: boolean; } export declare const Tbody: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=Tbody.d.ts.map