/// <reference types="node" />
import GoogleAuthentifier from './GoogleAuthentifier';
import { AuthorisationCache, CredentialsBody } from './types';
declare const createRandomUsername: () => string;
declare const createRandomCredentials: () => CredentialsBody;
declare const createRandomAuthorisationCache: () => AuthorisationCache;
declare const createAnonymousAuthentifier: () => Promise<GoogleAuthentifier>;
declare const createAnonymousValidAuthentifier: () => Promise<GoogleAuthentifier>;
declare const createValidAuthentifier: () => Promise<GoogleAuthentifier>;
declare const jpegImage: Buffer;
export { createRandomCredentials, createRandomUsername, createRandomAuthorisationCache, createAnonymousAuthentifier, createAnonymousValidAuthentifier, createValidAuthentifier, jpegImage, };
