import { Controller, type ControllerCallContext } from './Controller.js';
import { FileContentService } from '../../../utils/FileContentService.js';
export declare class BackLinksController extends Controller {
    private readonly filesService;
    constructor(subPath: string, filesService: FileContentService);
    getBackLinks(ctx: ControllerCallContext): Promise<{
        backlinks: never[];
        links: never[];
        notGenerated: boolean;
    } | {
        backlinks: {
            folderId: string;
            fileId: string;
            linksCount: number;
            path: string;
            name: string;
        }[];
        links: {
            folderId: string;
            fileId: string;
            linksCount: number;
            path: string;
            name: string;
        }[];
        notGenerated?: undefined;
    }>;
}
//# sourceMappingURL=BackLinksController.d.ts.map