import * as React from 'react';
import { BaseTheme } from '../../theming/baseTheme';
import { PaddingProps, ResponsiveProps, StylingProps, WithStyle } from '../types';
interface Props<T extends BaseTheme> extends WithStyle<T>, ResponsiveProps<PaddingProps>, ResponsiveProps<StylingProps<T>> {
    testId?: string;
    innerRef?: React.RefObject<HTMLDivElement>;
}
export declare class ColRow<T extends BaseTheme> extends React.Component<Props<T>, unknown> {
    render(): JSX.Element;
}
export {};
