import type { PluginStorage } from './types.js'; /** * Create a PluginStorage instance for a specific plugin */ export declare function getPluginStorage(pluginName: string): PluginStorage; /** * Delete all storage for a plugin (for uninstall/cleanup) */ export declare function deletePluginStorage(pluginName: string): void; /** * List all plugins with storage */ export declare function listPluginsWithStorage(): string[]; /** * Clear storage cache (for testing) */ export declare function clearStorageCache(): void; //# sourceMappingURL=storage.d.ts.map