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