export default class StorageProviderError extends Error {
    constructor(error: Error);
    toJSON(): {
        name: string;
        message: string;
        stack: string | undefined;
    };
}
