import { EmptyState as ChakraEmptyState } from '@chakra-ui/react';
import * as React from 'react';
export type EmptyStateType = 'query' | 'stats' | 'coming_soon';
export interface EmptyStateProps extends ChakraEmptyState.RootProps {
    title?: string;
    description?: React.ReactNode;
    term?: string;
    type?: EmptyStateType;
    icon?: React.ReactNode;
    noIcon?: boolean;
}
export declare const EmptyState: React.ForwardRefExoticComponent<EmptyStateProps & React.RefAttributes<HTMLDivElement>>;
