import { type PropsWithChildren } from 'react'; /** * @internal */ export type EmptyStateProps = PropsWithChildren<{ height: string | number; }>; /** * @internal */ export declare const EmptyState: { ({ height, children }: EmptyStateProps): import("react/jsx-runtime.js").JSX.Element; displayName: string; };