/** * 行布局 */ export interface RowProps { /** * 列间距 */ gutter?: number; /** * 行两边留白方式 */ gutterType?: 'around' | 'between'; /** * 主轴对齐方式 */ justifyContent?: 'flex-start' | 'flex-end' | 'center' | 'space-around' | 'space-between'; /** * 交叉轴对齐方式 */ alignItems?: 'flex-start' | 'flex-end' | 'center' | 'stretch'; /** * 自定义样式名称 */ className?: string; } declare const Row: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, { className: string; } & RowProps, "className">; export default Row;