import mongoose from 'mongoose'; import { Progress } from '../suggest'; export interface Vote { userId: number | string; vote: 'up' | 'down'; } export type suggestionData = { message: string; author: string; votes: Array; progress: Progress; }; declare const _default: mongoose.Model & suggestionData & { _id: mongoose.Types.ObjectId; }, mongoose.Schema & suggestionData & { _id: mongoose.Types.ObjectId; }, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, suggestionData, mongoose.Document & suggestionData & { _id: mongoose.Types.ObjectId; }>>; export default _default;