export interface VoteNotification { readonly hash: string; readonly slots: readonly number[]; readonly timestamp: number | null; readonly signature: string; readonly votePubkey: string; } export declare function createVoteNotification(data: unknown): VoteNotification;