import { CSSProperties, PropsWithChildren, DOMAttributes } from "react"; interface ColProps extends DOMAttributes { /** 额外类名*/ className?: string; /** 样式*/ style?: CSSProperties; /** xs:<576px*/ xs?: number; /** sm:≥576px */ sm?: number; /** md :≥768px */ md?: number; /**lg:≥992px */ lg?: number; /**xl:≥1200px*/ xl?: number; /**xxl:≥1600px*/ xxl?: number; } declare function Col(props: PropsWithChildren): JSX.Element; interface RowProps extends DOMAttributes { /** 额外类名*/ className?: string; /** 样式*/ style?: CSSProperties; } declare function Row(props: PropsWithChildren): JSX.Element; declare namespace Row { var Col: typeof import("./grid").Col; } export default Row; export { Col };