import { IFile } from '../types';
/**
 * If string is given is assumes as the path and must exists
 */
export declare function protectFile(f: string | IFile, protect?: boolean): void;
export declare function isProtectedFile(f: string | IFile): boolean;
