import { SamError } from "@osaedasia/sam";
/**
 * Custom error thrown when attempting to access non-existent data in storage.
 * @extends SamError
 */
export declare class StorageDataNotFoundError extends SamError {
}
/**
 * Custom error thrown when an invalid storage key is provided.
 * @extends SamError
 */
export declare class InvalidStorageKeyError extends SamError {
}
