import React from 'react';
import { TdDescriptionsItemProps } from './type';
export type RowProps = {
    row: TdDescriptionsItemProps[];
};
declare const Row: React.FC<RowProps>;
export default Row;
