export interface BiometrySelectSpec { touchId?: T; faceId?: F; none?: N; android?: A; } /** * Select value by current biometry type * * @param spec */ declare function select(spec: BiometrySelectSpec): T | F | N | A | undefined; export declare const Biometry: { select: typeof select; }; export {};