import type { FileSystem } from "../../config-mutations/dist/index.js"; import type { ApiShapeId } from "../../providers/dist/index.js"; export interface ProviderConfigStoreOptions { fs: FileSystem; filePath: string; } export interface LoadProviderShapeBaseUrlsOptions extends ProviderConfigStoreOptions { providerId: string; readOnly?: boolean; } export interface SaveProviderShapeBaseUrlsOptions extends ProviderConfigStoreOptions { providerId: string; shapeBaseUrls: Partial>; } export declare function loadProviderShapeBaseUrls(options: LoadProviderShapeBaseUrlsOptions): Promise>>; export declare function saveProviderShapeBaseUrls(options: SaveProviderShapeBaseUrlsOptions): Promise;