import type { CommandModule } from 'yargs'; import { type RdfIndexSolidFsRebuildResult } from '../../solidfs'; interface RdfArgs { url?: string; json: boolean; } export interface RdfTextRebuildCommandInput { workspace: string; sourcePath?: string; textIndex: string; dryRun?: boolean; reset?: boolean; } export declare function readInlineOrFile(value: string): string; export declare function documentResourceInput(input: string): string; export declare function buildSparqlPatch(input: { insert?: string; delete?: string; }): string; export declare function resolveSparqlEndpoint(podRoot: string, scope?: string): string; export declare function executeRdfTextRebuildCommand(input: RdfTextRebuildCommandInput): Promise; export declare const rdfCommand: CommandModule; export {};