import type { PiniaPluginContext } from "pinia"; import type { StorageConfig } from "../types"; /** * Custom Pinia plugin for feature flags persistence * Provides fine-grained control over storage behavior */ export declare function createPersistencePlugin(config: StorageConfig): ({ store }: PiniaPluginContext) => void;