import { BusinessException } from "../../../common/exceptions/business.exception";
export declare class EntraNotConfiguredException extends BusinessException {
    constructor(missingConfig?: string[]);
}
export declare class EntraAuthenticationFailedException extends BusinessException {
    constructor(message?: string);
}
export declare class EntraInsufficientPrivilegesException extends BusinessException {
    constructor(requiredPermissions?: string[]);
}
export declare class GraphApiException extends BusinessException {
    constructor(message: string, details?: any);
}
export declare class SyncInProgressException extends BusinessException {
    constructor();
}
export declare class SyncFailedException extends BusinessException {
    constructor(message: string, details?: any);
}
