1 | import * as React from 'react';
|
2 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
3 | export interface ContainerProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
4 | fluid?: boolean | string | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
5 | }
|
6 | declare const Container: BsPrefixRefForwardingComponent<'div', ContainerProps>;
|
7 | export default Container;
|