declare class Favorite { request: any; constructor(props: any); getMyCollections: (params: any) => Promise; isCollection: ({ contentId, contentType }: { contentId: any; contentType: any; }) => Promise; addCollection: ({ contentId, contentType, content, userContent, collectionId }: { contentId: any; contentType: any; content: any; userContent: any; collectionId: any; }) => Promise; delCollection: ({ contentId, contentType, clientId }: { contentId: any; contentType: any; clientId: any; }) => Promise; addFavorites: ({ name }: { name: any; }) => Promise; updateFavorites: ({ id, name }: { id: any; name: any; }) => Promise; delFavorites: (id: any) => Promise; getFavorites: (params: any) => Promise; } export default Favorite;