import { FC, PropsWithChildren } from 'react'; declare type IColProps = PropsWithChildren<{ className?: string; wrap?: boolean; span?: number; offset?: number; auto?: boolean; }>; declare const Col: FC; export default Col;