type CAN_FILTER_OP = 0 | 1 | 2;
declare const CAN_FILTER_REPLACE: 0;
declare const CAN_FILTER_ADD: 1;
declare const CAN_FILTER_REMOVE: 2;

export { CAN_FILTER_ADD, CAN_FILTER_REMOVE, CAN_FILTER_REPLACE };
export type { CAN_FILTER_OP };
