import { definePodRepository } from './repository'; import { chatResource, type ChatRow, type ChatInsert, type ChatUpdate } from './chat.schema'; export declare function buildChatRepositoryTarget(chatIdOrRef: string): { id: string; }; export declare function buildChatRepositoryIri(webIdOrPodUrl: string, chatIdOrRef: string): string; export declare function readChatRepositoryId(chatRef: string | null | undefined): string | null; export declare const chatRepository: ReturnType> & { target: typeof buildChatRepositoryTarget; iri: typeof buildChatRepositoryIri; idFromRef: typeof readChatRepositoryId; };