/// <reference types="react" />
export default function Col({ type, children }: {
    type: string;
    children: any;
}): JSX.Element;
