import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type ContainerParts = { container: ''; }; declare type ContainerDOMProps = React.ComponentPropsWithRef<'div'>; declare type ContainerStyleConfigProp = { styleConfig?: StyleConfig; }; declare type ContainerSystemProps = BoxSystemProps; export declare type ContainerProps = ContainerDOMProps & ContainerStyleConfigProp & ContainerSystemProps & { as?: React.ElementType; }; export declare const Container: React.ForwardRefExoticComponent & React.RefAttributes>; export {};