import { MessageDefinition } from '../../../core/types.js';

declare const FENCE_STATUS_ID = 162;
declare const FENCE_STATUS_CRC_EXTRA = 0;
declare const FenceStatusDefinition: MessageDefinition;
interface MessageFenceStatus {
    breach_time: number;
    breach_count: number;
    breach_status: number;
    breach_type: number;
    breach_mitigation?: number;
}

export { FENCE_STATUS_CRC_EXTRA, FENCE_STATUS_ID, FenceStatusDefinition };
export type { MessageFenceStatus };
