/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type FC, type ReactNode } from 'react';
interface EmptyViewContainerProps {
    testId?: string;
    children: ReactNode;
}
export declare const EmptyViewContainer: FC<EmptyViewContainerProps>;
export {};
