import { StackProps } from '@mantine/core'; import React from 'react'; interface EmptyStateProps extends StackProps { icon?: React.ReactNode; title?: string; description?: string; titleClassName?: string; descriptionClassName?: string; withBorder?: boolean; } export declare function EmptyState({ className, icon, title, description, children, titleClassName, descriptionClassName, withBorder, ...props }: React.PropsWithChildren): import("react/jsx-runtime").JSX.Element; export {};