import type { SessionPermissions } from "@/types"; type SandboxAppsAccessCheckResult = { allowed: boolean; reason?: string; }; /** * Checks whether a target path should be accessible under app isolation rules. * Expects: target is an absolute path. */ export declare function sandboxAppsAccessCheck(permissions: SessionPermissions, target: string): SandboxAppsAccessCheckResult; export {}; //# sourceMappingURL=sandboxAppsAccessCheck.d.ts.map