import React from 'react';
import * as S from './Column.styles';
export declare type ColProps = {
    children?: React.ReactNode;
} & S.Variants;
declare const Col: ({ sm, md, lg, children, debug, ...props }: ColProps) => JSX.Element;
export default Col;
