import React from 'react';
import type * as Polymorphic from '@radix-ui/react-polymorphic';
import * as S from './Container.styles';
export declare type ContainerProps = {
    children?: React.ReactNode;
} & S.Variants;
declare const DEFAULT_TAG = "div";
declare type ContainerComponent = Polymorphic.ForwardRefComponent<typeof DEFAULT_TAG, ContainerProps>;
declare const Container: ContainerComponent;
export default Container;
