package com.github.mjdev.libaums.fs;

/* JADX INFO: loaded from: classes.dex */
public interface FileSystem {
    long getCapacity();

    int getChunkSize();

    long getFreeSpace();

    long getOccupiedSpace();

    UsbFile getRootDirectory();

    String getVolumeLabel();
}
