import React from 'react';
interface Props {
    children: React.ReactNode;
    css?: string;
    left?: boolean;
    right?: boolean;
    top?: boolean;
    bottom?: boolean;
    centerx?: boolean;
    centery?: boolean;
    center?: boolean;
}
export declare const Row: ({ children, ...props }: Props) => JSX.Element;
export declare const Col: ({ children, ...props }: Props) => JSX.Element;
export {};
