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