import { AllowedComponentProps, VNodeProps } from '../common' declare interface RowProps { // 布局配置 gutter?: number | string align?: 'top' | 'middle' | 'bottom' | 'stretch' justify?: 'start' | 'end' | 'center' | 'space-around' | 'space-between' wrap?: boolean // 样式配置 width?: number | string height?: number | string margin?: number | string padding?: number | string bgColor?: string borderColor?: string borderRadius?: number | string shadow?: boolean // 间距配置 rowGap?: number | string columnGap?: number | string } declare interface RowEmits { (e: 'click', event: any): void } declare interface _Row { new(): { $props: AllowedComponentProps & VNodeProps & RowProps $emit: RowEmits } } export declare const Row: _Row export default Row export type { RowProps, RowEmits }