import React from 'react'; import { ColumnProps } from '../../layout/column'; export declare type ColumnsProps = Readonly<{ className?: string; children: Array>; }>; /** * A parent component for component. * Each nested inside the parent will share the horizontal space and get an equal * share of the available horizontal space. * * Only are valid children of . */ export declare const Columns: (props: ColumnsProps) => JSX.Element;