import { type ReactNode, type HTMLAttributes } from "react";
export type EmptyStateSize = "sm" | "md" | "lg";
export interface EmptyStateProps extends HTMLAttributes {
icon?: ReactNode;
title: string;
description?: ReactNode;
actions?: ReactNode;
size?: EmptyStateSize;
}
export declare const EmptyState: import("react").ForwardRefExoticComponent>;