declare type MediapipeFacemeshType = { /** * @param args files: URLs of files to process * @returns a [frames, faces, points, 3 (point_x_y_z)] tensor (array) */ runFaceMeshWithFiles(args: { files: string[]; runner?: number; }): Promise; /** * @param base64Images Base 64 images of frames wanted to process * @returns a [frames, faces, points, 3 (point_x_y_z)] tensor (array) */ runFaceMeshWithBase64Images(args: { base64Images: string[]; runner?: number; }): Promise; listRunners(): Promise; freeRunner(args: { runner: number; }): Promise; /** Debug */ tryJustAlloc(args: { lib?: boolean; }): Promise; }; declare const _default: MediapipeFacemeshType; export default _default;