import { RequestService } from "./request.service.js"; import { ServerPathBrowseView, ServerPathDirectoryCreateRequest, ServerPathDirectoryCreateView, ServerPathReadView, ServerPathSearchView } from "@nextclaw/server"; //#region src/services/server-paths.service.d.ts declare class ServerPathsService { private readonly requestService; constructor(requestService: RequestService); readonly browse: (params?: { path?: string | null; basePath?: string | null; includeFiles?: boolean; }) => Promise; readonly createDirectory: (input: ServerPathDirectoryCreateRequest) => Promise; readonly read: (params: { path: string; basePath?: string | null; line?: number | null; }) => Promise; readonly search: (params: { basePath: string; query?: string | null; limit?: number | null; }) => Promise; } //#endregion export { ServerPathsService }; //# sourceMappingURL=server-paths.service.d.ts.map