import './index.scss';
import { type FC, HTMLAttributes } from 'react';
export interface MainProps extends HTMLAttributes<HTMLElement> {
    tagName?: string;
}
export type Direction = 'flex-row' | 'flex-column';
declare const Container: FC<MainProps>;
export default Container;
