import { BaseError } from './base';
export declare class SecurityError extends BaseError {
    constructor(message: string);
    constructor(message: string, info: object);
    constructor(message: string, info: object, internalError: Error);
}
