import React from "react"; export interface GlassEmptyStateAction { label: string; onClick?: () => void; href?: string; } export interface GlassEmptyStateProps extends React.HTMLAttributes { title?: string; description?: string; icon?: React.ReactNode; variant?: "default" | "search" | "success" | "compact"; primaryAction?: GlassEmptyStateAction; secondaryAction?: GlassEmptyStateAction; } export declare const GlassEmptyState: React.ForwardRefExoticComponent>; //# sourceMappingURL=GlassEmptyState.d.ts.map