/** * Write Turtle data to a Solid Pod. * * Supports two granularity modes: * - document: all triples in one resource * - fragment: one resource per subject * * Reuses css-account.ts for authentication. */ export interface PodAuth { baseUrl: string; email: string; password: string; } interface PodContext { token: string; podUrl: string; } /** * Authenticate and resolve the Pod URL. */ export declare function resolvePod(auth: PodAuth): Promise; /** * PUT a Turtle document to a Pod resource path. */ export declare function putTurtle(ctx: PodContext, targetPath: string, turtle: string): Promise; export {};