import * as React from 'react'; /** * 行组件属性 */ export interface RowProps { children: React.ReactNode; gutter?: number; gutterType?: 'around' | 'between'; center?: boolean; start?: boolean; around?: boolean; between?: boolean; end?: boolean; top?: boolean; middle?: boolean; bottom?: boolean; stretch?: boolean; style?: React.CSSProperties; } export declare const cssStyle: (props: RowProps) => import("styled-components").InterpolationValue[]; declare const RowWrapper: import("styled-components").StyledComponentClass & React.HTMLAttributes & RowProps, import("../types").Theme, React.ClassAttributes & React.HTMLAttributes & RowProps>; /** * Grid布局中的行组件 * * @ReactComponent */ export default function Row(props: RowProps): JSX.Element; export { RowWrapper };