import type { EnrollProps, EstimateAgeProps } from './application/modules/core/face';
import type { OpenCameraProps } from './application/modules/support/camera';
import type { WasmModuleOptions } from './application/modules/support/wasm';
export declare function openCameraNew(props: OpenCameraProps): Promise<import("./application/modules/support/camera").CameraOpenResult>;
export declare function loadPrivateIdModules(props: WasmModuleOptions): Promise<import("./application/modules/support/wasm").WasmLoadResult>;
export declare function facialAgeEstimation(props: EstimateAgeProps): Promise<unknown>;
export declare function facialEnroll(props: EnrollProps): Promise<unknown>;
