import { ModulusWeight } from './interfaces'; import { CheckType } from './enums'; export declare const applyAccountDetailExceptionRules: (sortCode: string, accountNumber: string, modulusWeightException: number | null) => string; export declare const applyWeightValueExceptionRules: (modulusWeight: ModulusWeight, accountDetails: string) => number[]; export declare const applyOverwriteExceptionRules: (modulusWeight: ModulusWeight, accountDetails: string, _sortCode?: string) => { modifiedAccountDetails: string; overwriteResult: boolean | null; }; export declare const applyPostTotalExceptionRules: (exception: number | null, total: number, accountDetails: string, checkType?: CheckType) => { adjustedTotal: number; postTotalOverwriteResult: boolean | null; };