export declare class Altuari {
    /** Store APPLICATION named, will be used in firestore for verifying */
    APPLICATION_NAME: string;
    APPLICATION_TOKEN: string;
    APPLICATION_LOTTERY_TYPE: string;
    readonly APPLICATION_AUTHENTICATED: boolean;
    /**
     * @param name APPLICATION Name
     */
    constructor(name: string);
    initializeApp(APPLICATION_TOKEN: string): void;
    isAuthenticated(): boolean;
}
