/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export type ColType = '1-of-2' | '1-of-3' | '2-of-3' | '1-of-4' | '2-of-4' | '3-of-4';
export interface ColProps extends StyleProps, React.PropsWithChildren<any>, IdProps {
    type: ColType;
}
export declare const Col: ({ children, style, type, className, id }: ColProps) => import("react/jsx-runtime").JSX.Element;
