import { ReactHTML, HTMLAttributes, FC } from 'react';
/**
*
*/
export type GridProps = {
tag?: keyof ReactHTML;
frame?: boolean;
vertical?: boolean;
} & HTMLAttributes;
/**
*
*/
export declare const Grid: FC;
/**
*
*/
export type ColProps = {
padded?: boolean | 'medium' | 'large';
align?: 'top' | 'middle' | 'bottom';
noFlex?: boolean;
order?: number;
orderSmall?: number;
orderMedium?: number;
orderLarge?: number;
cols?: number;
colsSmall?: number;
colsMedium?: number;
colsLarge?: number;
} & HTMLAttributes;
/**
*
*/
export declare const Col: FC;
export type RowProps = {
align?: 'center' | 'space' | 'spread';
nowrap?: boolean;
nowrapSmall?: boolean;
nowrapMedium?: boolean;
nowrapLarge?: boolean;
pullPadded?: boolean;
cols?: number;
colsSmall?: number;
colsMedium?: number;
colsLarge?: number;
} & HTMLAttributes;
/**
*
*/
export declare const Row: FC;