import { BusinessException } from "../../../common/exceptions/business.exception";
export declare class AzureCredentialMissingException extends BusinessException {
    constructor(missing: string[]);
}
export declare class GraphInsufficientScopeException extends BusinessException {
    constructor(detail?: string);
}
export declare class GraphAuthFailedException extends BusinessException {
    constructor(detail?: string);
}
export declare class GraphRateLimitException extends BusinessException {
    constructor(detail?: string);
}
export declare class GraphUpstreamErrorException extends BusinessException {
    constructor(detail?: string);
}
export declare class ReportsObfuscatedException extends BusinessException {
    constructor();
}
export declare class SyncInProgressException extends BusinessException {
    constructor(executionId: string);
}
export declare class NoSuccessfulSyncException extends BusinessException {
    constructor();
}
export declare class M365UserNotFoundException extends BusinessException {
    constructor(userId: string);
}
export declare class ExportTooLargeException extends BusinessException {
    constructor(rowCount: number, limit: number);
}
