import React from 'react'; import { TbodyProps } from '../interface'; declare type TrType = TbodyProps & { record?: T; shouldRowExpand?: (record: any, index: any) => boolean; index?: number; type?: string; level?: number; }; interface ForwardRefTrType extends React.ForwardRefExoticComponent & React.RefAttributes> { (props: React.PropsWithChildren> & { ref?: React.Ref; }): React.ReactElement; } declare const _default: ForwardRefTrType; export default _default;