import mongoose, { Document } from 'mongoose';
export declare type ProjectDocument = Project & Document;
export declare class Project {
    name: string;
    elements: any[];
    extras: any;
    paint: any;
    creator: string;
    quote: string;
    adminVersion: any;
}
export declare const ProjectSchema: mongoose.Schema<Project, mongoose.Model<Project, any, any, any, any>, {}, {}, {}, {}, "type", Project>;
