import { type JSX, type ReactNode } from 'react'; /** * @public */ export interface ErrorStateSlotProps { children: ReactNode | ((errorMessage: string) => JSX.Element); } /** * @public */ export declare const ErrorStateSlot: ({ children }: ErrorStateSlotProps) => import("react/jsx-runtime").JSX.Element;