import type { RemoteConfigBundle, RemoteConfigBundleStore, RemoteConfigManagedArtifactStore } from "./bundle"; export declare class FileRemoteConfigBundleStore implements RemoteConfigBundleStore { private readonly filePath; constructor(filePath: string); read(): Promise; write(bundle: RemoteConfigBundle): Promise; clear(): Promise; } export declare class FileSystemRemoteConfigManagedArtifactStore implements RemoteConfigManagedArtifactStore { writeText(filePath: string, contents: string): Promise; remove(targetPath: string): Promise; removeChildren(directoryPath: string): Promise; }