import React, { ReactNode } from 'react'; import { TWidth, Torder } from '../../utils'; export declare type TCol = { children?: ReactNode; className?: string; custom?: boolean; xs?: TWidth; sm?: TWidth; md?: TWidth; lg?: TWidth; xl?: TWidth; order?: Torder; }; export declare const Col: React.ForwardRefExoticComponent>; export default Col;