/** * HandPose module entry point */ import { Hand } from '../result'; import { Tensor } from '../tfjs/types'; import { Config } from '../config'; export declare function predict(input: Tensor, config: Config): Promise; export declare function load(config: Config): Promise<[unknown, unknown]>;