import * as React from 'react'; /** * Zero-state container for empty lists, tables, and search results. * * @description * Replaces raw "No data found" text or bare SVG placeholders with a * structured, accessible empty state. Composed from sub-primitives: * `Empty > EmptyIcon > EmptyTitle > EmptyDescription > EmptyAction`. * * @ai-rules * 1. NEVER render raw text like "No records found" — always use ` > > `. * 2. Align CTA buttons inside ``. * 3. Icons inside `` use `className="size-10 text-muted-foreground"`. * 4. When used inside a table, wrap in `` to fill the full row. */ declare const Empty: React.ForwardRefExoticComponent & React.RefAttributes>; declare const EmptyIcon: React.ForwardRefExoticComponent & React.RefAttributes>; declare const EmptyImage: React.ForwardRefExoticComponent & React.RefAttributes>; declare const EmptyTitle: React.ForwardRefExoticComponent & React.RefAttributes>; declare const EmptyDescription: React.ForwardRefExoticComponent & React.RefAttributes>; declare const EmptyAction: React.ForwardRefExoticComponent & React.RefAttributes>; export { Empty, EmptyIcon, EmptyImage, EmptyTitle, EmptyDescription, EmptyAction };