import { ByteBuffer } from '@runejs/common';
export interface FilestoreChannels {
    dataChannel: ByteBuffer;
    indexChannels: ByteBuffer[];
    metaChannel: ByteBuffer;
}
export declare const loadFilestore: (dir: string) => FilestoreChannels;
