import * as Storage from '../core/Storage.js';
/** Returns the default CLI provider storage path. */
export declare function defaultPath(): string;
/** Creates a filesystem-backed storage adapter for CLI provider state. */
export declare function filesystem(options?: filesystem.Options): Storage.Storage;
export declare namespace filesystem {
    /** Options for {@link filesystem}. */
    type Options = {
        /** Storage key prefix. @default "tempo-cli" */
        key?: string | undefined;
        /** JSON file path. @default "~/.tempo/wallet/store.json" */
        path?: string | undefined;
    };
}
//# sourceMappingURL=storage.d.ts.map