import type { DbFile } from '../../../../types/dbTypes'; /** * Persists which files belong to the scene, writing the cache optimistically so the * viewer's load effects see the new value in the same tick and roll back on failure. */ export declare function useFileVisibility(buildingId?: number): { setVisible: (file: DbFile, isVisible: boolean) => Promise; setVisibleMany: (files: DbFile[], isVisible: boolean) => Promise; }; //# sourceMappingURL=useFileVisibility.d.ts.map