export declare function notAvailableError(name: string): never; export declare function illegalStateError(message: string): never; export interface ErrorInfo { /** * Captures which component contained the exception, and its ancestors. */ componentStack: string; }