import * as mongoose from "mongoose";
export declare const SecretsSchema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, {
    timestamps: true;
    toJSON: {
        virtuals: true;
    };
    toObject: {
        virtuals: true;
    };
}, {
    createdAt: NativeDate;
    updatedAt: NativeDate;
} & {
    jwtSecret: string;
    jwtRefreshSecret: string;
}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
    createdAt: NativeDate;
    updatedAt: NativeDate;
} & {
    jwtSecret: string;
    jwtRefreshSecret: string;
}>> & mongoose.FlatRecord<{
    createdAt: NativeDate;
    updatedAt: NativeDate;
} & {
    jwtSecret: string;
    jwtRefreshSecret: string;
}> & {
    _id: mongoose.Types.ObjectId;
} & {
    __v: number;
}>;
