import { Agent } from './agent.entity'; export declare class ApiKey { id: string; agent_id: string; key_hash: string; key_prefix: string; is_active: boolean; label: string; created_at: Date; agent: Agent; }