export declare class PathHelper {
    static isIndexedDBPath(path: string): boolean;
    static parseIndexedDBPath(path: string): {
        database: string;
        storeName: string;
        key: string;
    };
}
