import React from 'react'; export declare type TwelveColumn = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; export declare type FourColumn = 1 | 2 | 3 | 4; export declare type EightColumn = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8; export declare type Alignment = 'bottom' | 'middle' | 'top'; export interface CellProps extends React.HTMLProps { align?: Alignment; className?: string; columns?: TwelveColumn; desktopColumns?: TwelveColumn; order?: TwelveColumn; phoneColumns?: FourColumn; tabletColumns?: EightColumn; tag?: string; } declare const Cell: (props: CellProps) => React.ReactElement; export default Cell;