import { Exception } from './exception'; export declare class ArgumentException extends Exception { private paramName; constructor(paramName?: string, message?: string); get ParamName(): string; }