export declare const AcCmErrors: {
    /**
     * Throw error ILLEGAL_PARAMETERS when cannot instantiate from given parameter
     */
    readonly ILLEGAL_PARAMETERS: ReferenceError;
    /**
     * Throw error ZERO_DIVISION to catch situation of zero division
     */
    readonly ZERO_DIVISION: Error;
    /**
     * Error to throw from BooleanOperations module in case when fixBoundaryConflicts not capable to fix it
     */
    readonly UNRESOLVED_BOUNDARY_CONFLICT: Error;
    /**
     * Error to throw from LinkedList:testInfiniteLoop static method
     * in case when circular loop detected in linked list
     */
    readonly INFINITE_LOOP: Error;
    readonly CANNOT_INVOKE_ABSTRACT_METHOD: Error;
    readonly OPERATION_IS_NOT_SUPPORTED: Error;
    readonly NOT_IMPLEMENTED: Error;
};
//# sourceMappingURL=AcCmErrors.d.ts.map