import { type IconName } from '../Icon/Icon.js'; interface EmptyStateMessageProps { icon: IconName; title: string; message: string; } export declare function EmptyStateMessage({ icon, title, message }: EmptyStateMessageProps): import("react/jsx-runtime").JSX.Element; export {};