import type { HTMLAttributes } from 'react';
import React from 'react';
interface Props extends HTMLAttributes {
loading: boolean;
query: string;
}
export declare function Empty({ query, loading, className, ...attributes }: Props): React.JSX.Element;
export {};