import React, { FC } from 'react'; /** * Container properties */ export interface ContainerPropsStrict { /** Adds one or more classnames to an element */ className?: string; /** Shorthand for primary content */ content?: React.ReactNode; /** Set the wrapping element's tagname */ el?: any; /** Container has no maximum width */ fluid?: boolean; /** Reduce maximum width to more naturally accommodate text */ text?: boolean; /** Align container's text */ textAlign?: 'left' | 'right' | 'center' | 'justify'; } export interface ContainerProps extends ContainerPropsStrict { [propName: string]: any; } export declare const Container: FC;