/** * @author songxiwen * @date 2020/12/06 13:40 */ import { Document } from 'mongoose'; export declare class ApiKey extends Document { isEnabled: boolean; thirdPartyPlatformId: string; key: object; remainingCount: number; isPaid: boolean; resetAt: Date; createdAt: Date; updatedAt: Date; } export declare const apiKeySchema: import("mongoose").Schema;