export declare class ValidationError extends Error {
    /**
     * Create a new instance for the given `message`.
     *
     * @param message  The error message
     */
    constructor(message?: string);
    /**
     * Returns a validation error with the given `message`.
     */
    static createFrom(message: string): ValidationError;
}
