import * as React from 'react'; import { Float } from '../Types'; interface ICellProps { /** @ignore */ className?: string; /** @ignore */ children?: React.ReactNode; item: any; /** Column weight. Defaults to 1. */ weight?: number; /** Text alignment. Defaults to 'left'. */ align?: Float; /** Gap between columns. */ gap?: number; } declare const Cell: import("styled-components").StyledComponent<(props: ICellProps) => JSX.Element, import("../../styles/Theme").IThemeInterface, {}, never>; export { Cell };