import React from 'react'; import type { TdRowProps } from './type'; import { StyledProps } from '../common'; export interface RowProps extends TdRowProps, StyledProps { children?: React.ReactNode; } export declare const RowContext: React.Context<{ gutter: RowProps["gutter"]; }>; declare const Row: React.ForwardRefExoticComponent>; export default Row;