import React from 'react'; import { DisplayTypes, JustiyContentTypes } from '../utils/prop-types'; /*** END OF STYLE */ export interface ContainerProps { d?: DisplayTypes; fluid?: boolean; className?: string; children?: React.ReactNode; justifyContent?: JustiyContentTypes; } declare const Container: React.FC; export default Container;