export declare const PRIVATE_FOLDER = "Private"; export declare const SHARED_WITH_ME_FOLDER = "Shared with Me"; export declare const SHARED_BY_ME_FOLDER = "Shared by Me"; export type Scope = 'team' | 'private' | 'shared-with-me' | 'shared-by-me'; export interface ScopedDocPath { scope: Scope; teamId?: string | undefined; docPath: string; } export declare function teamFolderName(teamName: string): string; export declare function isUnderSyncRoot(candidate: string, root: string): boolean; export declare class SyncRootEscapeError extends Error { readonly candidate: string; readonly root: string; constructor(candidate: string, root: string); } export declare function assertUnderSyncRoot(candidate: string, root: string): string; export declare function scopeFromLocalPath(filePath: string, localPath: string, teamIdsByName: Map): ScopedDocPath; //# sourceMappingURL=paths.d.ts.map