/** * @author songxiwen * @date 2020/12/06 13:40 */ import { Document } from 'mongoose'; export declare class ApiKeyUsageCount extends Document { thirdPartyApiKeyId: string; thirdPartyPlatformId: string; callerRole: string; callerId: string; isPaid: boolean; createdAt: Date; } export declare const apiKeyUsageCountSchema: import("mongoose").Schema;