import { SystemException, BaseError, Type } from "igniteui-react-core";
/**
 * Represents an error in I/O processing.
 */
export declare class IOException extends SystemException {
    static $t: Type;
    constructor(message: string, innerException: BaseError);
}
