Values for the `exposure` prop range from [`device.minExposure`](/docs/api/interfaces/CameraDevice#minexposure) to [`device.maxExposure`](/docs/api/interfaces/CameraDevice#maxexposure), inclusively. By default (`undefined`), it is set to neutral auto exposure.
Instead of manually adjusting ISO and Exposure-Duration, this acts as an "exposure compensation bias", meaning the Camera will still continuously automatically adjust exposure as it goes, but premultiplies the given exposure value to it's ISO and Exposure Duration settings.
### Examples

### Animating
Just like [`zoom`](zooming), this property can be animated using Reanimated.
1. Add the `exposure` prop to the whitelisted animateable properties:
```tsx
import Reanimated, { addWhitelistedNativeProps } from "react-native-reanimated"