You did not answer the question what the source for the interrupt is.
If it's two buttons, you can use diodes; you will have to rewire so the buttons read LOW when pressed. I think 1N4148 diodes will work; see calculations below.
Connect two diodes to one Arduino pin, anode at the Arduino, cathode at the button; other side of the button to ground. Below ASCII art is an attempt to make it clear.
If you need to determine which button is pressed, you need to wire at least one of the buttons to another pin as well. If that pin reads low when the 328P wakes up, that button was pressed, else the other button was pressed.
sleep.sleepPinInterrupt(intPin, LOW); // react when button goes low (was high)
This will enable the internal pull-up (see source code of library); worst case, this will be 20 kOhm, so a current of 3.3/20k = 0.17 mA. An 1N4148 diode will have a voltage drop (at that current) of around 0.5V (see 1N4148 datasheet, figure 2) which is below the high limit (Vil, 0.3 x Vcc; see 328P datasheet, table 30-1) that the 328P will see as low.