import type { ValuesOf } from '../../Types/ValuesOf'; /** * `CameraCaptureFormat` - The `CameraCaptureFormat` object is used to describe the different formats * * @public */ export declare const CameraCaptureFormat: { /** * `jpeg` - The jpeg camera capture format. */ readonly Jpeg: "jpeg"; /** * `png` - The jpeg camera capture format. */ readonly Png: "png"; /** * `webp` - The webp camera capture format. */ readonly Webp: "webp"; }; /** * @public */ export type CameraCaptureFormat = ValuesOf; //# sourceMappingURL=CameraCaptureFormat.d.ts.map