import * as React from 'react'; import { FlexProps } from '../Flex'; export declare type LocalColumnsProps = { /** Indicates if the columns should be gapless. */ isGapless?: boolean; /** Indicates if the columns should be placed on the one line. */ isOneLine?: boolean; /** Indicates the minimum breakpoint where the columns should snap. */ minBreakpoint?: 'tablet' | 'mobile'; /** Sets the spacing between each column. */ spacing?: string; }; export declare type ColumnsProps = FlexProps & LocalColumnsProps; export declare const Columns: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };