/** * Specialized error type intended to be used for errors that occur due to * failures in schema validations. * * @memberof args */ export declare class SchemaError extends Error { /** * @param message The error message associated with the error. */ constructor(message?: string | undefined); }