export declare const padHexString: (hexString: string) => string; export declare const STORAGE_METHOD: { readonly LOCAL_STORAGE: "localStorage"; }; export type StorageMethod = (typeof STORAGE_METHOD)[keyof typeof STORAGE_METHOD]; export declare function storageAvailable(type: StorageMethod): boolean;