import type { MetadataConfigurationRequest } from './metadata-configuration-request.js';
/**
 * Representation of the 'MetadataConfigurationResponse' schema.
 */
export type MetadataConfigurationResponse = MetadataConfigurationRequest & {
    /**
     * Status of metadata enumeration for the configuration.
     * @example "IN_PROGRESS"
     */
    enumerationStatus?: 'NEW' | 'IN_PROGRESS' | 'COMPLETED' | 'ERROR' | any;
} & Record<string, any>;
//# sourceMappingURL=metadata-configuration-response.d.ts.map