import { Storage } from '@varasto/storage';
import { FileSystemStorageOptions } from './types';
/**
 * Creates new file system storage with given options.
 */
export declare const createFileSystemStorage: (options?: Partial<FileSystemStorageOptions>) => Storage;
