import { type ReactNode } from 'react'; /** * @public */ export interface EmptyStateSlotProps { children: ReactNode; } /** * @public */ export declare const EmptyStateSlot: ({ children }: EmptyStateSlotProps) => import("react/jsx-runtime").JSX.Element;