export interface InvalidArgumentError extends Error { } export interface InvalidArgumentConstructor { new (message?: string): InvalidArgumentError; (message?: string): InvalidArgumentError; readonly prototype: InvalidArgumentError; } export declare const InvalidArgumentError: InvalidArgumentConstructor;