import type { ReactNode } from "react"; import { type EmptyStateVariant } from "./variants.js"; export * from "./variants.js"; export type EmptyStateProps = { icon?: ReactNode; title: string; description: string; /** Optional call-to-action rendered under the description. */ action?: ReactNode; /** `tinted` places the icon inside a soft circular tint chip. */ variant?: EmptyStateVariant; }; export declare function EmptyState({ icon, title, description, action, variant }: EmptyStateProps): import("react").JSX.Element; //# sourceMappingURL=index.d.ts.map