import { CommonOffenceDetail } from '../common/CommonOffenceDetail.js';

declare class OffenceSeverityBand extends CommonOffenceDetail {
    effectiveToDate?: string | null;
    effectiveFromDate?: string | null;
    penaltyPoints?: number | null;
    penaltyAmount?: number | null;
    depositAmount?: number | null;
}

export { OffenceSeverityBand };
