export interface ExportManifestResponse { /** Whether the export completed successfully. */ success?: boolean | undefined; /** The exported manifest data. The wrapper uses snake_case, while asset objects inside `contexts`, `values`, `rules`, and `flows` intentionally preserve `.rbm`/database casing for round-trip compatibility. */ manifest?: ExportManifestResponse.Manifest | undefined; /** Error message if export failed. */ error?: string | undefined; } export declare namespace ExportManifestResponse { /** * The exported manifest data. The wrapper uses snake_case, while asset objects inside `contexts`, `values`, `rules`, and `flows` intentionally preserve `.rbm`/database casing for round-trip compatibility. */ interface Manifest { /** Manifest format version. */ version?: string | undefined; /** Manifest name. */ name?: string | undefined; /** Manifest description. */ description?: string | undefined; exported_at?: string | undefined; /** Exported contexts. */ contexts?: Record[] | undefined; /** Exported dynamic values. */ values?: Record[] | undefined; /** Exported rules. */ rules?: Record[] | undefined; /** Exported flows. */ flows?: Record[] | undefined; } }