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