import React from 'react'; export interface ColumnProps { children?: React.ReactNode; className?: string; hasAuto?: Boolean; hasColumn?: Boolean; padding?: string; position?: 'static' | 'absolute' | 'fixed' | 'relative' | 'sticky' | 'initial' | 'inherit'; widthOfElment?: string; } declare const Column: { (props: ColumnProps): JSX.Element; propTypes: { children: import("prop-types").Requireable; hasAuto: import("prop-types").Requireable; hasColumn: import("prop-types").Requireable; padding: import("prop-types").Requireable; position: import("prop-types").Requireable; widthOfElment: import("prop-types").Requireable; }; defaultProps: { hasAuto: boolean; hasColumn: boolean; }; }; export default Column;