import type { Plugin } from 'rollup';
export interface LocalStorageDetection {
    value: string;
    hint: string;
    module: string;
}
/**
 * Rollup plugin that detects host-local storage URLs (e.g. `file:./mastra.db`,
 * `postgres://localhost`) in **user source modules** during bundling.
 *
 * Only modules outside `node_modules` (and the deployer's own
 * `.mastra/.build/@mastra__*` shim files) are inspected, so library code
 * (like Agent Builder prompt templates or JSDoc examples in `@mastra/core`)
 * is naturally excluded.  Tree-shaken modules are excluded via
 * `generateBundle` — only modules that actually contribute rendered code to
 * the output are reported.
 *
 * Detected paths are emitted as `preflight-local-paths.json` in the output
 * directory for the CLI preflight check to consume.
 */
export declare function localStorageDetector(): Plugin;
//# sourceMappingURL=local-storage-detector.d.ts.map