///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
import { Schema, Document, Types } from 'mongoose';
export interface IAgentApiKey extends Document {
userId: Types.ObjectId;
name: string;
keyHash: string;
keyPrefix: string;
lastUsedAt?: Date;
expiresAt?: Date;
createdAt: Date;
updatedAt: Date;
tenantId?: string;
}
declare const agentApiKeySchema: Schema;
export default agentApiKeySchema;