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