import { RemoveFavoriteInput } from '../types'; interface AddFavoriteCurried { apiKey: string; apiSecret: string; personId: string; } export declare const removeFavorite: ({ apiKey, apiSecret, personId, }: AddFavoriteCurried) => ({ messageId }: RemoveFavoriteInput) => Promise; export {};