import React from 'react'; import { StyledProps } from '../common'; import { TdRowProps } from './type'; /** * Row 组件支持的属性。 */ export interface RowProps extends TdRowProps, StyledProps { /** * 默认子元素内容 */ children: React.ReactNode; } export declare const RowContext: React.Context<{ gutter: any; size: any; }>; declare const Row: React.ForwardRefExoticComponent>; export default Row;