import { Feeling } from "../types/feelings"; declare function like(userId: string): Promise; declare function pass(userId: string): Promise; declare const feeling: { like: typeof like; pass: typeof pass; }; export default feeling;