import { Exception } from "./Exception";
/**
 * The exception that is thrown when the operating system denies access because of an I/O error or a specific type of security error.
 */
export declare class UnauthorizedAccessException extends Exception {
    /**
     * Initializes a new instance of the `UnauthorizedAccessException`.
     *
     * @param message
     * A message that describes the current exception.
     *
     * @param innerException
     * The Exception instance that caused the current exception.
     */
    constructor(message?: string, innerException?: Exception);
}
