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>;
