import { StringDict } from "../../../../parsing/index.js";
import { DataSchemaField } from "./dataSchemaField.js";
/**
 * The structure to completely replace the data schema of the model.
 */
export declare class DataSchemaReplace {
    /**
     * List of fields in the Data Schema.
     */
    fields: Array<DataSchemaField>;
    constructor(dataSchemaReplace: StringDict);
    toJSON(): {
        fields: Record<string, unknown>[];
    };
    toString(): string;
}
