import { ComponentProps, ReactNode } from 'react'; export type TableEmptyStateProps = { title: string; description?: ReactNode; eyebrow?: string; icon?: ReactNode; isPending?: boolean; } & Omit, "children">; export declare function TableEmptyState({ description, eyebrow, icon, isPending, title, ...props }: TableEmptyStateProps): import("react").JSX.Element;