export declare enum FaceVerifyStatus { '未开始' = -1, '失败' = 0, '成功' = 1 } export interface Options { /** * 姓名,小程序需要 */ name?: string; /** * 身份证号,小程序需要 */ no?: string; /** * web端需要,用户身份信息 */ request_verify_pre_info?: string; /** * web端需要,公众id */ appid?: string; } declare const _default: ({ name, no, request_verify_pre_info, appid }: Options) => { handleFaceVerify: () => Promise; faceVerifyStatus: FaceVerifyStatus; }; export default _default;