import { AllowedComponentProps, VNodeProps } from '../common' declare interface ColProps { // 布局配置 span?: number | string offset?: number | string order?: number | string alignSelf?: 'auto' | 'start' | 'end' | 'center' | 'stretch' flex?: string // 响应式配置 xs?: number | string sm?: number | string md?: number | string lg?: number | string xl?: number | string // 样式配置 width?: number | string height?: number | string margin?: number | string padding?: number | string bgColor?: string borderColor?: string borderRadius?: number | string // 点击事件 clickable?: boolean } declare interface ColEmits { (e: 'click', event: any): void } declare interface _Col { new(): { $props: AllowedComponentProps & VNodeProps & ColProps $emit: ColEmits } } export declare const Col: _Col export default Col export type { ColProps, ColEmits }