/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type FC, type ReactNode } from 'react';
import type { Width } from '../types';
type ContainerProps = {
    testId?: string;
    width: Width;
    children: ReactNode;
};
/**
 * __Container__
 *
 * Upper level container for Empty State.
 *
 * @internal
 */
declare const Container: FC<ContainerProps>;
export default Container;
