import { ComponentProps, FC } from 'react'; type TContainerProps = { fluid?: boolean; } & Pick, 'className' | 'style' | 'children'>; declare const Container: FC; export { Container };