import type { ValuesOf } from '../../Types/ValuesOf'; /** * `CameraType` - The `CameraType` object is used to describe the different types of cameras. * * @public */ export declare const CameraType: { /** * `front` - The front camera type. */ readonly Front: "front"; /** * `back` - The mp4 camera type. */ readonly Back: "back"; }; /** * @public */ export type CameraType = ValuesOf; //# sourceMappingURL=CameraType.d.ts.map