import { Camera } from './camera.domain';
export declare class CameraServiceFactory {
    /**
     * Creates the appropriate camera service based on the current browser and platform
     * @returns Camera service instance optimized for the current environment
     */
    static create(): Camera;
}
