@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
22 lines (21 loc) • 854 B
TypeScript
import * as React from 'react';
import { BaseProps } from "../../../utils/types";
export interface ChatProps extends BaseProps {
children: React.ReactNode;
role?: string;
'aria-live'?: 'polite' | 'assertive' | 'off';
'aria-label'?: string;
}
export declare const Chat: {
(props: ChatProps): React.JSX.Element;
DateSeparator: React.FC<import("./dateSeparator").DateSeparatorProps>;
UnreadMessage: React.FC<import("./unreadMessage").UnreadMessageProps>;
NewMessage: React.FC<import("./newMessage").NewMessageProps>;
TypingIndicator: React.FC<import("./typingIndicator").TypingIndicatorProps>;
ChatBubble: {
(props: import("./chatBubble").ChatBubbleProps): React.JSX.Element;
displayName: string;
};
ChatInput: React.FC<import("./chatInput/ChatInput").ChatInputProps>;
};
export default Chat;