import { DataSource, Repository } from '@n8n/typeorm'; import { InstanceAiThreadGrant } from '../entities/instance-ai-thread-grant.entity'; export declare class InstanceAiThreadGrantRepository extends Repository { constructor(dataSource: DataSource); grant(threadId: string, userId: string, grantKey: string): Promise; findKeys(threadId: string, userId: string): Promise>; }