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