/** * Remote config — server-persisted non-secret key-value store per env. * * Renamed from `config.ts` in the old OOP SDK to `remoteConfig.ts` (ADR-077 * Rule D) — disambiguates from the CLI-side local JSON store (`config.ts`) * and the billing `plan`/`subscription` surface. */ import type { Client } from './client.js'; import type { ConfigEntry } from './types.js'; export interface OrgScopedRequestOptions { readonly orgId?: string; } export declare const list: (client: Client, projectId: string, envType?: string, options?: OrgScopedRequestOptions) => Promise; export declare const get: (client: Client, projectId: string, key: string, envType?: string, options?: OrgScopedRequestOptions) => Promise; export declare const set: (client: Client, projectId: string, key: string, value: string, envType?: string, options?: OrgScopedRequestOptions) => Promise; declare const _delete: (client: Client, projectId: string, key: string, envType?: string, options?: OrgScopedRequestOptions) => Promise; export { _delete as delete }; //# sourceMappingURL=remoteConfig.d.ts.map