export default interface ISecurity { getPinCode(): Promise; setPinCode(pinCode: string): Promise; generateRandomPinCode(): Promise; }