UNPKG

chatui2

Version:

The React library for Chatbot UI

10 lines (9 loc) 296 B
import React from 'react'; export interface EmptyProps { className?: string; type?: 'error' | 'default'; image?: string; tip?: string; children?: React.ReactNode; } export declare const Empty: React.ForwardRefExoticComponent<EmptyProps & React.RefAttributes<HTMLDivElement>>;