export interface IOptions {
    withPrefix?: boolean;
}
declare const hashFile: (value_: any, options_?: IOptions) => Promise<string>;
export default hashFile;
