export interface Col {
    children?: any;
    title?: string;
    gap?: number | false;
    align?: "left" | "center" | "right" | "stretch";
    style?: object;
    fit?: boolean;
    fill?: boolean;
    show?: "desktop" | "laptop" | "tablet" | "mobile";
    hide?: "desktop" | "laptop" | "tablet" | "mobile";
    responsive?: "desktop" | "laptop" | "tablet" | "mobile";
    reverse?: boolean;
}
export default function Col(props: Col): import("react").JSX.Element;
//# sourceMappingURL=Col.d.ts.map