export declare const hostApi: {
    vote(payload: {
        noderedId: string;
        root: string;
        id: string;
        hashVote: boolean;
    }): Promise<void>;
    getAuthToken: () => Promise<string | null>;
};
