@bothub-chat/ui
Version:
Bothub UI Components
11 lines (10 loc) • 358 B
TypeScript
import React from 'react';
export interface BookmarkCardChatDefaultProps {
name: string;
skeleton?: false;
}
export interface BookmarkCardChatSkeletonProps {
skeleton: true;
}
export type BookmarkCardChatProps = BookmarkCardChatDefaultProps | BookmarkCardChatSkeletonProps;
export declare const BookmarkCardChat: React.FC<BookmarkCardChatProps>;