import LoginBase from './login';
import { EncryptBase } from './encrypt';
import { FSLWeb3 } from './web3';
import { WebAuthn } from './faceId';
import { GoogleUpload } from './upload/google';
import { IosUpload } from './upload/ios';
export * from './api';
export * from './constants';

declare global {
  interface Window {
    AppleID: any;
    CloudKit: any;
    google: any;
  }
}

export { LoginBase, EncryptBase, FSLWeb3, GoogleUpload, IosUpload, WebAuthn };
