import type { SharedEmptyStateProps } from '@contractspec/lib.ui-kit-core/interfaces'; import { type VariantProps } from 'class-variance-authority'; declare const containerVariants: (props?: ({ density?: "default" | "compact" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface EmptyStateProps extends SharedEmptyStateProps, VariantProps { } export declare function EmptyState({ icon, title, description, primaryAction, secondaryAction, className, density, }: EmptyStateProps): import("react/jsx-runtime").JSX.Element; export {};