import * as React from 'react'; import {PropsWithChildren} from "react"; export interface ContainerProps { fluid?: boolean; className?: string; stretchVertically?: boolean; } export interface ColumnsProps { className?: string; rtl?: boolean; stretchViewsVertically?: boolean; dataHook?: string; } export interface ColProps { className?: string; span?: string | number; rtl?: boolean; xs?: string | number; sm?: string | number; md?: string | number; lg?: string | number; xl?: string | number; dataHook?: string; } export interface AutoAdjustedColumnsProps {} export const Container: React.FC>; export const RawContainer: React.FC>; export class Columns extends React.Component> {} export class Row extends React.Component> {} export class Col extends React.Component> {} export class AutoAdjustedColumns extends React.Component> {} export class AutoAdjustedRow extends React.Component> {}