/**
 * Validators for furo base types and google well known types
 */
export class BaseSpecValidators {
    /**
     * Register all validators. This should be done in your init phase of your app.
     * ```js
     * import {BaseSpecValidators} from '@furo/framework/src/BaseSpecValidators/RegisterAll.js';
     *
     * BaseSpecValidators.registerAll()
     * ```
     *
     */
    static registerAll(): void;
}
