/**
 * All internally used built in {@link ExtractionPlugin}s and
 * {@link SimplificationPlugin}s. They work just like the custom plugins which
 * are added to {@link Options.plugins}, but are used internally to create the
 * default behavior,
 *
 * There are no internally used built in {@link ValidationPlugin}s, because
 * without any custom plugins, default validation is desired.
 *
 * @module
 */
export { typeExtraction, notExtraction, allOfExtraction, anyOfExtraction, constExtraction, numberExtraction, stringExtraction, objectExtraction, arrayExtraction, ifThenElseExtraction, oneOfExtraction, refExtraction, constSimplification, numberSimplification, stringSimplification, objectSimplification, arraySimplification, refSimplification, } from './built-in-plugins/index.js';
