import type { MetadataOperationEnum } from './metadata-operation-enum.js';
/**
 * Representation of the 'MetadataOperation' schema.
 */
export type MetadataOperation = {
    op: MetadataOperationEnum;
    /**
     * List of values to update.
     */
    values?: string[] | null;
} & Record<string, any>;
//# sourceMappingURL=metadata-operation.d.ts.map