import { ReactNode } from "react"; import '../../style/gridCol.scss'; interface ColProps { children?: ReactNode; width?: string; className?: string; style?: { [index: string]: string; }; } declare const Col: (props: ColProps) => JSX.Element; export default Col;